1 /* Testcase for strtok reported by Andrew Church <achurch@achurch.org>. */
11 if (strtok (buf
, " ") != NULL
)
13 puts ("first strtok call did not return NULL");
16 else if (strtok (NULL
, " ") != NULL
)
18 puts ("second strtok call did not return NULL");