blob: dc0e11540af1d7266a388bd71a654cafce75c416 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* ISC license. */
#include <errno.h>
#include <skalibs/allreadwrite.h>
#include <skalibs/buffer.h>
int buffer_getall (buffer *b, char *buf, unsigned int len, unsigned int *w)
{
if (*w > len) return (errno = EINVAL, -1) ;
for (;;)
{
register int r ;
*w += buffer_getnofill(b, buf + *w, len - *w) ;
if (*w >= len) break ;
r = sanitize_read(buffer_fill(b)) ;
if (r <= 0) return r ;
}
return 1 ;
}
|