commit 960d97aae29fcd5e7d09bcc24b28cdef9472f712
Author:     Roberto E. Vargas Caballero <[email protected]>
AuthorDate: Thu Feb 23 16:19:41 2017 +0100
Commit:     Roberto E. Vargas Caballero <[email protected]>
CommitDate: Thu Feb 23 16:23:00 2017 +0100

    [libc] Add strspn()

diff --git a/libc/src/Makefile b/libc/src/Makefile
index 2984f58..e401f13 100644
--- a/libc/src/Makefile
+++ b/libc/src/Makefile
@@ -3,7 +3,7 @@
 
 LIBCOBJ = assert.o strcpy.o strcmp.o strlen.o strchr.o \
           strrchr.o strcat.o strncmp.o strncpy.o strncat.o strcoll.o \
-          strxfrm.o strtok.o strstr.o \
+          strxfrm.o strtok.o strstr.o strspn.o \
           memset.o memcpy.o memmove.o memcmp.o memchr.o \
           isalnum.o isalpha.o isascii.o isblank.o iscntrl.o isdigit.o \
           isgraph.o islower.o isprint.o ispunct.o isspace.o isupper.o \
diff --git a/libc/src/strspn.c b/libc/src/strspn.c
new file mode 100644
index 0000000..2280de7
--- /dev/null
+++ b/libc/src/strspn.c
@@ -0,0 +1,19 @@
+/* See LICENSE file for copyright and license details. */
+
+#include <string.h>
+
+size_t
+strspn(const char *s1, const char *s2)
+{
+       size_t n;
+       int c;
+       const char *p;
+
+       for (n = 0; c = *s1++; ++n) {
+               for (p = s2; *p && *p != c; ++p)
+                       /* nothing */;
+               if (*p == '\0')
+                       break;
+       }
+       return n;
+}

Reply via email to