summaryrefslogtreecommitdiff
path: root/string/bits
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2001-09-14 20:41:30 +0000
committerUlrich Drepper <drepper@redhat.com>2001-09-14 20:41:30 +0000
commit29215bbd7eb8e2f03881ccc039338d2b2c369995 (patch)
tree05ae1be061dbc04a9863596142f5230b2fdc7b16 /string/bits
parent0991cbf654ef86bc9e0c3a0d940be7f00ac1be71 (diff)
Update.
* string/bits/string2.h (__strtok_r_1c): Optimize a bit.
Diffstat (limited to 'string/bits')
-rw-r--r--string/bits/string2.h16
1 files changed, 7 insertions, 9 deletions
diff --git a/string/bits/string2.h b/string/bits/string2.h
index 1caa81b403..09a49b6fff 100644
--- a/string/bits/string2.h
+++ b/string/bits/string2.h
@@ -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;
}