mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-08 17:42:12 +03:00
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>.
This commit is contained in:
23
string/tst-strtok.c
Normal file
23
string/tst-strtok.c
Normal file
@@ -0,0 +1,23 @@
|
||||
/* 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;
|
||||
}
|
Reference in New Issue
Block a user