Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1122 - (show annotations) (download)
Wed Aug 18 21:11:40 2010 UTC (13 years, 8 months ago) by niro
File MIME type: text/plain
File size: 175 byte(s)
-updated to klibc-1.5.19
1 #include <string.h>
2
3 char *strtok_r(char *s, const char *delim, char **holder)
4 {
5 if (s)
6 *holder = s;
7
8 do {
9 s = strsep(holder, delim);
10 } while (s && !*s);
11
12 return s;
13 }