repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Improve the process for GNU tools
[minix3.git]
/
external
/
bsd
/
mdocml
/
dist
/
test-strsep.c
blob
4c57c13e2cea3bfc1fdbef102d08752f329d4f61
1
#include <string.h>
2
3
int
4
main
(
void
)
5
{
6
char
buf
[
6
] =
"aybxc"
;
7
char
*
workp
=
buf
;
8
char
*
retp
=
strsep
(&
workp
,
"xy"
);
9
return
( ! (
retp
==
buf
&&
'\0'
==
buf
[
1
] &&
buf
+
2
==
workp
));
10
}