summaryrefslogtreecommitdiff
path: root/src/libstddjb/siovec_bytein.c
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2017-02-17 22:30:53 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2017-02-17 22:30:53 +0000
commitfdffefb8032922ce7ffe4c00816072a8ff2148fc (patch)
treebc7313151a429c45d8bab8ad8b9dd32f4e51335f /src/libstddjb/siovec_bytein.c
parenta896ca2a8c617e5e00ffd5fc9e69331ad754e5b3 (diff)
downloadskalibs-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_bytein.c')
-rw-r--r--src/libstddjb/siovec_bytein.c10
1 files changed, 6 insertions, 4 deletions
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 <sys/types.h>
+#include <sys/uio.h>
#include <skalibs/bytestr.h>
#include <skalibs/siovec.h>
-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 ;
}