summaryrefslogtreecommitdiff
path: root/src/libstddjb/siovec_bytein.c
diff options
context:
space:
mode:
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 ;
}