freebsd-skq/contrib/mdocml/test-strsep.c

11 lines
185 B
C
Raw Normal View History

2014-11-22 18:08:25 +00:00
#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));
}