Fixed input buffers, thanks to David Lichteblau.

This commit is contained in:
leitner
2001-11-25 22:37:38 +00:00
parent b40bae5bf4
commit f6d554da10
5 changed files with 13 additions and 11 deletions

View File

@@ -4,6 +4,7 @@ void buffer_init(buffer* b,int (*op)(),int fd,char* y,unsigned int ylen) {
b->op=op;
b->fd=fd;
b->x=y;
b->n=ylen;
b->a=ylen;
b->p=0;
b->n=0;
}