mirror of
https://github.com/systemd/systemd.git
synced 2024-11-06 16:59:03 +03:00
a41a0e28c2
Not hooked up to the build yet.
17 lines
172 B
C
17 lines
172 B
C
/*
|
|
* strtok.c
|
|
*/
|
|
|
|
#include <string.h>
|
|
|
|
char *strtok(char *s, const char *delim)
|
|
{
|
|
static char *holder;
|
|
|
|
if ( s )
|
|
holder = s;
|
|
|
|
return strsep(&holder, delim);
|
|
}
|
|
|