diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2017-02-15 17:40:40 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2017-02-15 17:40:40 +0000 |
commit | a896ca2a8c617e5e00ffd5fc9e69331ad754e5b3 (patch) | |
tree | f49a8382b9999b5aa00c0885eedd5c5c3a233e55 /src/libstddjb/byte_chr.c | |
parent | 00c9cb1b22cc17c4db573e0e613a5f116ff0092e (diff) | |
download | skalibs-a896ca2a8c617e5e00ffd5fc9e69331ad754e5b3.tar.xz |
add arc4random_addrandom sysdep; next batch of types changes.
The library isn't supposed to be functional yet: there are
still a lot of type mismatches.
Diffstat (limited to 'src/libstddjb/byte_chr.c')
-rw-r--r-- | src/libstddjb/byte_chr.c | 23 |
1 files changed, 4 insertions, 19 deletions
diff --git a/src/libstddjb/byte_chr.c b/src/libstddjb/byte_chr.c index 45ad543..d24e92d 100644 --- a/src/libstddjb/byte_chr.c +++ b/src/libstddjb/byte_chr.c @@ -1,26 +1,11 @@ /* ISC license. */ -#include <skalibs/config.h> -#include <skalibs/bytestr.h> - -#ifndef SKALIBS_FLAG_REPLACE_LIBC - +#include <sys/types.h> #include <string.h> +#include <skalibs/bytestr.h> -unsigned int byte_chr (char const *s, unsigned int n, int c) +size_t byte_chr (char const *s, size_t n, int c) { register void *p = memchr(s, c, n) ; - return p ? (unsigned int)((char *)p - s) : n ; + return p ? (char *)p - s : n ; } - -#else - -unsigned int byte_chr (char const *s, unsigned int n, int c) -{ - register unsigned int i = 0 ; - register char ch = c ; - for (; i < n && *s++ != ch ; i++) ; - return i ; -} - -#endif |