mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-21 01:12:26 +08:00
1999031e04
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>.
24 lines
429 B
C
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;
|
|
}
|