libowfat/buffer/buffer_init.c

13 lines
193 B
C
Raw Normal View History

2001-02-04 01:28:45 +00:00
#include "buffer.h"
void buffer_init(buffer* b,int (*op)(),int fd,
char* y,unsigned long int ylen) {
2001-02-04 01:28:45 +00:00
b->op=op;
b->fd=fd;
b->x=y;
b->a=ylen;
2001-02-04 01:28:45 +00:00
b->p=0;
b->n=0;
2005-01-04 22:38:00 +00:00
b->todo=NOTHING;
2001-02-04 01:28:45 +00:00
}