aboutsummaryrefslogtreecommitdiff
path: root/sys/base/string/find.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/base/string/find.c')
-rw-r--r--sys/base/string/find.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/sys/base/string/find.c b/sys/base/string/find.c
deleted file mode 100644
index 20f990e..0000000
--- a/sys/base/string/find.c
+++ /dev/null
@@ -1,11 +0,0 @@
-#include "internal.h"
-
-// find will find the first occurence of
-// substr in the string returns -1 if nothing was found.
-int
-strĀ·find(string s, const byte* substr)
-{
- byte* loc = strstr(s, substr);
- if (loc == nil) return -1;
- return (int)(loc - s);
-}