summaryrefslogtreecommitdiff
path: root/subfdin.c
blob: a11d3230e3c0620079858315a6ab170cfb9a7dcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "readwrite.h"
#include "substdio.h"
#include "subfd.h"

int subfd_read(fd,buf,len) int fd; char *buf; int len;
{
  if (substdio_flush(subfdout) == -1) return -1;
  return read(fd,buf,len);
}

char subfd_inbuf[SUBSTDIO_INSIZE];
static substdio it = SUBSTDIO_FDBUF(subfd_read,0,subfd_inbuf,SUBSTDIO_INSIZE);
substdio *subfdin = ⁢