mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-21 01:12:26 +08:00
Update.
* string/bits/string2.h (__strtok_r_1c): Optimize a bit.
This commit is contained in:
parent
0991cbf654
commit
29215bbd7e
@ -1,5 +1,7 @@
|
||||
2001-09-14 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* string/bits/string2.h (__strtok_r_1c): Optimize a bit.
|
||||
|
||||
* sysdeps/unix/sysv/linux/net/ethernet.h: Correct references to
|
||||
ETHER_CRC_LEN.
|
||||
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user