source: trunk/sys/dietlibc/strtok.c @ 182

Last change on this file since 182 was 1, checked in by alain, 7 years ago

First import

File size: 132 bytes
Line 
1#include <string.h>
2
3static char *strtok_pos;
4
5char *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.