source:
trunk/sys/dietlibc/strtok.c
@
251
Last change on this file since 251 was 1, checked in by , 8 years ago | |
---|---|
File size: 132 bytes |
Rev | Line | |
---|---|---|
[1] | 1 | #include <string.h> |
2 | ||
3 | static char *strtok_pos; | |
4 | ||
5 | char *strtok(char *s, const char *delim) | |
6 | { | |
7 | return strtok_r(s,delim,&strtok_pos); | |
8 | } |
Note: See TracBrowser
for help on using the repository browser.