File: subfdin.c

package info (click to toggle)
safecat 1.8-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 516 kB
  • ctags: 250
  • sloc: ansic: 1,920; makefile: 371; sh: 282
file content (13 lines) | stat: -rw-r--r-- 340 bytes parent folder | download | duplicates (19)
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 = ⁢