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/getlnmax.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/getlnmax.c')
-rw-r--r-- | src/libstddjb/getlnmax.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/libstddjb/getlnmax.c b/src/libstddjb/getlnmax.c index e3fde8f..6f6783a 100644 --- a/src/libstddjb/getlnmax.c +++ b/src/libstddjb/getlnmax.c @@ -1,19 +1,21 @@ /* ISC license. */ +#include <sys/types.h> +#include <sys/uio.h> #include <errno.h> #include <skalibs/bytestr.h> #include <skalibs/buffer.h> #include <skalibs/skamisc.h> -int getlnmax (buffer *b, char *d, unsigned int max, unsigned int *w, char sep) +int getlnmax (buffer *b, char *d, size_t max, size_t *w, char sep) { if (max < *w) return (errno = EINVAL, -1) ; for (;;) { - siovec_t v[2] ; - unsigned int len = buffer_len(b) ; - unsigned int pos ; - int r ; + struct iovec v[2] ; + size_t len = buffer_len(b) ; + size_t pos ; + ssize_t r ; buffer_rpeek(b, v) ; if (len > max - *w) len = max - *w ; pos = siovec_bytechr(v, 2, sep) ; |