source:
trunk/sys/dietlibc/strtok.c
@
191
| Last change on this file since 191 was 1, checked in by , 9 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.
