diff options
Diffstat (limited to 'include/str.h')
| -rw-r--r-- | include/str.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/str.h b/include/str.h new file mode 100644 index 0000000..ffda145 --- /dev/null +++ b/include/str.h @@ -0,0 +1,14 @@ +#ifndef STRINGS_H +#define STRINGS_H + +#include "db.h" + + +uint16_t len(const char *s); + +bool sameStr(const char *s1, const char *s2); + +ssize_t strInTags(const char *tags, int n, const char *ndl, int m, char sep); + + +#endif
\ No newline at end of file |
