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/siovec_bytein.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'src/libstddjb/siovec_bytein.c') diff --git a/src/libstddjb/siovec_bytein.c b/src/libstddjb/siovec_bytein.c index e9db87d..bcf6e59 100644 --- a/src/libstddjb/siovec_bytein.c +++ b/src/libstddjb/siovec_bytein.c @@ -1,17 +1,19 @@ /* ISC license. */ +#include +#include #include #include -unsigned int siovec_bytein (siovec_t const *v, unsigned int n, char const *sep, unsigned int seplen) +size_t siovec_bytein (struct iovec const *v, unsigned int n, char const *sep, size_t seplen) { - unsigned int w = 0 ; + size_t w = 0 ; unsigned int i = 0 ; for (; i < n ; i++) { - register unsigned int pos = byte_in(v[i].s, v[i].len, sep, seplen) ; + size_t pos = byte_in((char const *)v[i].iov_base, v[i].iov_len, sep, seplen) ; w += pos ; - if (pos < v[i].len) break ; + if (pos < v[i].iov_len) break ; } return w ; } -- cgit v1.2.3