From fdffefb8032922ce7ffe4c00816072a8ff2148fc Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Fri, 17 Feb 2017 22:30:53 +0000 Subject: More types changes New disize Add size_t to the autotypes list Delete redundant and replace-libc files dev_t/ino_t pass Big size_t pass More things missing, still not operational yet --- src/libstddjb/byte_in.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/libstddjb/byte_in.c') diff --git a/src/libstddjb/byte_in.c b/src/libstddjb/byte_in.c index cb6e5bc..f777991 100644 --- a/src/libstddjb/byte_in.c +++ b/src/libstddjb/byte_in.c @@ -1,14 +1,15 @@ /* ISC license. */ #include +#include #include size_t byte_in (char const *s, size_t n, char const *sep, size_t len) { - register char const *t = s ; + char const *t = s ; while (n--) { - if (byte_chr(sep, len, *t) < len) break ; + if (memchr(sep, *t, len)) break ; ++t ; } return t - s ; -- cgit v1.3.1