Sign in
googlers
/
maze
/
klibc
/
ad6cb3fea7ce96aec76b3d147a43fb330a7ccf93
/
.
/
strsep.c
blob: a0660872617263c763d70211f7f5324a62d17254 [
file
] [
log
] [
blame
]
/*
* strsep.c
*/
#include
<string.h>
char
*
strsep
(
char
**
stringp
,
const
char
*
delim
)
{
char
*
s
=
*
stringp
;
char
*
e
;
if
(
!
s
)
return
NULL
;
e
=
strpbrk
(
s
,
delim
);
if
(
e
)
*
e
=
'\0'
;
*
stringp
=
e
;
return
s
;
}