core: do aligned transfers in bcopy32
[syslinux.git] / com32 / lib / strtok.c
blobe89a9c56c9dcd4ce736c67d5f160f8bcc7fc500b
1 /*
2 * strtok.c
3 */
5 #include <string.h>
7 char *strtok(char *s, const char *delim)
9 static char *holder;
11 if ( s )
12 holder = s;
14 return strsep(&holder, delim);