Message ID | 20150524154017.GA18976@domone |
---|---|
State | New |
Headers | show |
diff --git a/string/bits/string2.h b/string/bits/string2.h index a595c74..2fe67b3 100644 --- a/string/bits/string2.h +++ b/string/bits/string2.h @@ -277,10 +277,7 @@ __STRING_INLINE size_t __strcspn_c1 (const char *__s, int __reject); __STRING_INLINE size_t __strcspn_c1 (const char *__s, int __reject) { - size_t __result = 0; - while (__s[__result] != '\0' && __s[__result] != __reject) - ++__result; - return __result; + return __strchrnul (__s, __reject) - __s; } __STRING_INLINE size_t __strcspn_c2 (const char *__s, int __reject1,