diff options
author | 2023-02-03 22:41:09 +0100 | |
---|---|---|
committer | 2023-02-03 22:41:09 +0100 | |
commit | ee986164d354f4d7094f7e0fb4fcea31170f5661 (patch) | |
tree | 49d2521a53f91378786cf98107a20234077b27ca /src/string2.h | |
parent | c0683663affb71091d7952575f3ee06e30bf9259 (diff) | |
download | string2-ee986164d354f4d7094f7e0fb4fcea31170f5661.tar.gz string2-ee986164d354f4d7094f7e0fb4fcea31170f5661.zip |
Add function to get libraryversion
Diffstat (limited to 'src/string2.h')
-rw-r--r-- | src/string2.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/string2.h b/src/string2.h index 4d79dfd..e927470 100644 --- a/src/string2.h +++ b/src/string2.h @@ -5,7 +5,8 @@ #include <string.h> -int strends(const char *, const char *); -int strstarts(const char *, const char *); +int strends(const char *, const char *); +int strstarts(const char *, const char *); +char *strlibver(void); #endif /* __STRING2_H__ */ |