chiark
/
gitweb
/
~mdw
/
ezmlm
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Import ezmlm-idx 0.40
[ezmlm]
/
substdio.c
1
#include "substdio.h"
2
3
void substdio_fdbuf(s,op,fd,buf,len)
4
register substdio *s;
5
register int (*op)();
6
register int fd;
7
register char *buf;
8
register int len;
9
{
10
s->x = buf;
11
s->fd = fd;
12
s->op = op;
13
s->p = 0;
14
s->n = len;
15
}