glibc/string/tst-strtok.c
Ulrich Drepper 1999031e04 Update.
2001-02-21  Ulrich Drepper  <drepper@redhat.com>

	* sysdeps/i386/i686/strtok.S: Continue to return NULL after the
	first time this happened.

2001-02-21  Andreas Jaeger  <aj@suse.de>

	* string/tst-strtok.c: New testcase, reported by
	Andrew Church <achurch@achurch.org>.
2001-02-21 15:39:07 +00:00

24 lines
429 B
C

/* Testcase for strtok reported by Andrew Church <achurch@achurch.org>. */
#include <stdio.h>
#include <string.h>
int
main (void)
{
char buf[1] = { 0 };
int result = 0;
if (strtok (buf, " ") != NULL)
{
puts ("first strtok call did return NULL");
result = 1;
}
else if (strtok (NULL, " ") != NULL)
{
puts ("second strtok call did return NULL");
result = 1;
}
return result;
}