summaryrefslogtreecommitdiff
path: root/include/strings.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/strings.h')
-rw-r--r--include/strings.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/strings.h b/include/strings.h
new file mode 100644
index 00000000..cd8743c4
--- /dev/null
+++ b/include/strings.h
@@ -0,0 +1,15 @@
+#ifndef __STRINGS_H
+#define __STRINGS_H
+
+typedef __SIZE_TYPE__ size_t;
+
+int ffs(int);
+int ffsl(long);
+int ffsll(long long);
+
+int strcasecmp(const char *, const char *);
+// int strcasecmp_l(const char *, const char *, locale_t);
+int strncasecmp(const char *, const char *, size_t);
+// int strncasecmp_l(const char *, const char *, size_t, locale_t);
+
+#endif