aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test-strsep.c
blob: 4c57c13e2cea3bfc1fdbef102d08752f329d4f61 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include <string.h>

int
main(void)
{
	char buf[6] = "aybxc";
	char *workp = buf;
	char *retp = strsep(&workp, "xy");
	return( ! (retp == buf && '\0' == buf[1] && buf + 2 == workp));
}