1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-08 17:42:12 +03:00
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:
Ulrich Drepper
2001-02-21 15:39:07 +00:00
parent b85b133445
commit 1999031e04
3 changed files with 36 additions and 1 deletions

23
string/tst-strtok.c Normal file
View 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;
}