1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00
* string/bits/string2.h (__strtok_r_1c): Optimize a bit.
This commit is contained in:
Ulrich Drepper
2001-09-14 20:41:30 +00:00
parent 0991cbf654
commit 29215bbd7e
2 changed files with 9 additions and 9 deletions

View File

@ -1044,15 +1044,13 @@ __strtok_r_1c (char *__s, char __sep, char **__nextp)
else
{
__result = __s;
while (*__s != '\0' && *__s != __sep)
++__s;
if (*__s == '\0')
*__nextp = __s;
else
{
*__s = '\0';
*__nextp = __s + 1;
}
while (*__s != '\0')
if (*__s++ == __sep)
{
__s[-1] = '\0';
break;
}
*__nextp = __s;
}
return __result;
}