summaryrefslogtreecommitdiff
path: root/src/string/strcasestr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/string/strcasestr.c')
-rw-r--r--src/string/strcasestr.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/string/strcasestr.c b/src/string/strcasestr.c
new file mode 100644
index 00000000..f1cb0e84
--- /dev/null
+++ b/src/string/strcasestr.c
@@ -0,0 +1,7 @@
+#include <string.h>
+
+char *strcasestr(const char *h, const char *n)
+{
+ //FIXME!
+ return strstr(h, n);
+}