diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2017-02-17 22:30:53 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2017-02-17 22:30:53 +0000 |
commit | fdffefb8032922ce7ffe4c00816072a8ff2148fc (patch) | |
tree | bc7313151a429c45d8bab8ad8b9dd32f4e51335f /src/libstddjb/siovec_bytechr.c | |
parent | a896ca2a8c617e5e00ffd5fc9e69331ad754e5b3 (diff) | |
download | skalibs-fdffefb8032922ce7ffe4c00816072a8ff2148fc.tar.xz |
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
Diffstat (limited to 'src/libstddjb/siovec_bytechr.c')
-rw-r--r-- | src/libstddjb/siovec_bytechr.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/libstddjb/siovec_bytechr.c b/src/libstddjb/siovec_bytechr.c index a825488..8c7e78c 100644 --- a/src/libstddjb/siovec_bytechr.c +++ b/src/libstddjb/siovec_bytechr.c @@ -1,17 +1,19 @@ /* ISC license. */ +#include <sys/types.h> +#include <sys/uio.h> #include <skalibs/bytestr.h> #include <skalibs/siovec.h> -unsigned int siovec_bytechr (siovec_t const *v, unsigned int n, char c) +size_t siovec_bytechr (struct iovec const *v, unsigned int n, char c) { - unsigned int w = 0 ; + size_t w = 0 ; unsigned int i = 0 ; for (; i < n ; i++) { - register unsigned int pos = byte_chr(v[i].s, v[i].len, c) ; + size_t pos = byte_chr((char const *)v[i].iov_base, v[i].iov_len, c) ; w += pos ; - if (pos < v[i].len) break ; + if (pos < v[i].iov_len) break ; } return w ; } |