From 521d01e8ad87e931af3e9a763cc84a6cf7fe5ee3 Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Sun, 5 Dec 2021 09:47:21 -0800 Subject: Feat: basic string and memory functions Continue filling out the basic standard lib functions. Included prototypes of the str* and mem* families. Plan to add e(str|mem) and n(str|mem) variants as well. --- src/base/string/raw/efindc.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/base/string/raw/efindc.c (limited to 'src/base/string/raw/efindc.c') diff --git a/src/base/string/raw/efindc.c b/src/base/string/raw/efindc.c new file mode 100644 index 0000000..c20ce5a --- /dev/null +++ b/src/base/string/raw/efindc.c @@ -0,0 +1,15 @@ +#include + +char * +str·efindc(char *s, char *e, int c) +{ + if(s > e) + return nil; + + while(*s && s != e){ + if(*s == c) + return s; + s++; + } + return nil; +} -- cgit v1.2.1