aboutsummaryrefslogtreecommitdiff
path: root/include/str.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/str.h')
-rw-r--r--include/str.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/include/str.h b/include/str.h
index ffda145..de119f8 100644
--- a/include/str.h
+++ b/include/str.h
@@ -4,11 +4,15 @@
#include "db.h"
-uint16_t len(const char *s);
+uint32_t len(const char *s);
bool sameStr(const char *s1, const char *s2);
+char *normalizeStr(const char *str, uint32_t *ln);
+
+char *normalizeStrLimit(const char *str, uint32_t *l, uint32_t limit);
+
ssize_t strInTags(const char *tags, int n, const char *ndl, int m, char sep);
-#endif \ No newline at end of file
+#endif