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/skagetlnsep.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/skagetlnsep.c')
-rw-r--r-- | src/libstddjb/skagetlnsep.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/libstddjb/skagetlnsep.c b/src/libstddjb/skagetlnsep.c index 1d3b4ef..f9813f3 100644 --- a/src/libstddjb/skagetlnsep.c +++ b/src/libstddjb/skagetlnsep.c @@ -1,18 +1,20 @@ /* ISC license. */ +#include <sys/types.h> +#include <sys/uio.h> #include <errno.h> #include <skalibs/buffer.h> #include <skalibs/siovec.h> #include <skalibs/stralloc.h> #include <skalibs/skamisc.h> -int skagetlnsep (buffer *b, stralloc *sa, char const *sep, unsigned int seplen) +int skagetlnsep (buffer *b, stralloc *sa, char const *sep, size_t seplen) { - unsigned int start = sa->len ; + size_t start = sa->len ; for (;;) { - siovec_t v[2] ; - unsigned int pos ; + struct iovec v[2] ; + size_t pos ; int r ; buffer_rpeek(b, v) ; pos = siovec_bytein(v, 2, sep, seplen) ; |