From ce05175372a9ddca1a225db0765ace1127a39293 Mon Sep 17 00:00:00 2001 From: Nicholas Date: Fri, 12 Nov 2021 09:22:01 -0800 Subject: chore: simplified organizational structure --- src/base/string/find.c | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/base/string/find.c (limited to 'src/base/string/find.c') diff --git a/src/base/string/find.c b/src/base/string/find.c new file mode 100644 index 0000000..20f990e --- /dev/null +++ b/src/base/string/find.c @@ -0,0 +1,11 @@ +#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); +} -- cgit v1.2.1