Magellan Linux

Contents of /trunk/mkinitrd-magellan/klibc/usr/klibc/strspn.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 815 - (show annotations) (download)
Fri Apr 24 18:32:46 2009 UTC (15 years ago) by niro
File MIME type: text/plain
File size: 147 byte(s)
-updated to klibc-1.5.15
1 /*
2 * strspn
3 */
4
5 #include <string.h>
6
7 #include "strxspn.h"
8
9 size_t strspn(const char *s, const char *accept)
10 {
11 return __strxspn(s, accept, 0);
12 }