summaryrefslogtreecommitdiff
path: root/src/strfuncs.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/strfuncs.h')
-rw-r--r--src/strfuncs.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/strfuncs.h b/src/strfuncs.h
new file mode 100644
index 0000000..495ea98
--- /dev/null
+++ b/src/strfuncs.h
@@ -0,0 +1,5 @@
+#include <stdlib.h>
+
+char *strdup(const char *s);
+char *strndup(const char *s, size_t n);
+int strcasecmp(const char *s1, const char *s2);