repo.or.cz
/
syslinux-debian
/
hramrach.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Adding upstream version 3.61.
[syslinux-debian/hramrach.git]
/
com32
/
lib
/
strtok.c
blob
e89a9c56c9dcd4ce736c67d5f160f8bcc7fc500b
1
/*
2
* strtok.c
3
*/
4
5
#include <string.h>
6
7
char
*
strtok
(
char
*
s
,
const char
*
delim
)
8
{
9
static char
*
holder
;
10
11
if
(
s
)
12
holder
=
s
;
13
14
return
strsep
(&
holder
,
delim
);
15
}