libowfat/buffer/buffer_init_free.c

8 lines
159 B
C
Raw Normal View History

2005-01-04 22:38:00 +00:00
#include "buffer.h"
void buffer_init_free(buffer* b,int (*op)(),int fd,
char* y,unsigned long int ylen) {
2005-01-04 22:38:00 +00:00
buffer_init(b,op,fd,y,ylen);
b->todo=FREE;
}