source:
trunk/sys/dietlibc/strtok.c
@
8
Last change on this file since 8 was 1, checked in by , 8 years ago | |
---|---|
File size: 132 bytes |
Line | |
---|---|
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.