summaryrefslogtreecommitdiff
path: root/src/libstddjb/getlnmaxsep.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/getlnmaxsep.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/getlnmaxsep.c')
-rw-r--r--src/libstddjb/getlnmaxsep.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/libstddjb/getlnmaxsep.c b/src/libstddjb/getlnmaxsep.c
index 2bde443..8505417 100644
--- a/src/libstddjb/getlnmaxsep.c
+++ b/src/libstddjb/getlnmaxsep.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/siovec.h>
#include <skalibs/skamisc.h>
-int getlnmaxsep (buffer *b, char *d, unsigned int max, unsigned int *w, char const *sep, unsigned int seplen)
+int getlnmaxsep (buffer *b, char *d, size_t max, size_t *w, char const *sep, size_t seplen)
{
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_bytein(v, 2, sep, seplen) ;