From eed77bd2970a00d1394ed027ceca5b646e4671ce Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 17 Jun 2020 18:31:46 +0200 Subject: Started rewrite --- src/userspace/libc/string/strsep.c | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 src/userspace/libc/string/strsep.c (limited to 'src/userspace/libc/string/strsep.c') diff --git a/src/userspace/libc/string/strsep.c b/src/userspace/libc/string/strsep.c deleted file mode 100644 index badbf0f..0000000 --- a/src/userspace/libc/string/strsep.c +++ /dev/null @@ -1,25 +0,0 @@ -#include - -char *strsep(char **stringp, char *delim) -{ - char *s; - const char *spanp; - int c, sc; - char *tok; - if ((s = *stringp) == NULL) - return (NULL); - for (tok = s;;) { - c = *s++; - spanp = delim; - do { - if ((sc = *spanp++) == c) { - if (c == 0) - s = NULL; - else - s[-1] = 0; - *stringp = s; - return (tok); - } - } while (sc != 0); - } -} \ No newline at end of file -- cgit v1.2.3