summaryrefslogtreecommitdiff
path: root/src/libstddjb/iobufferu_init.c
blob: d2b86c88e1dea22719a3d764c0533ad84e1fc1e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* ISC license. */

#include <skalibs/alloc.h>
#include <skalibs/buffer.h>
#include <skalibs/iobuffer.h>

int iobufferu_init (iobufferu *b, int fdin, int fdout)
{
  register char *x = alloc(IOBUFFERU_SIZE) ;
  if (!x) return 0 ;
  b->buf = x ;
  buffer_init(&b->b[0], &buffer_read, fdin, x, IOBUFFERU_SIZE) ;
  buffer_init(&b->b[1], &buffer_write, fdout, x, IOBUFFERU_SIZE) ;
  return 1 ;
}