aboutsummaryrefslogtreecommitdiff
path: root/strings.h
diff options
context:
space:
mode:
Diffstat (limited to 'strings.h')
-rw-r--r--strings.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/strings.h b/strings.h
new file mode 100644
index 0000000..db3c3e1
--- /dev/null
+++ b/strings.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