xref: /netbsd-src/external/bsd/mdocml/dist/test-strsep.c (revision 9ff1f2ac944731963b1d62cde605dabb5cb29a3a)
1 #include <string.h>
2 
3 int
main(void)4 main(void)
5 {
6 	char buf[6] = "aybxc";
7 	char *workp = buf;
8 	char *retp = strsep(&workp, "xy");
9 	return ! (retp == buf && buf[1] == '\0' && workp == buf + 2);
10 }
11