aboutsummaryrefslogtreecommitdiff
path: root/buffer.c
blob: f44a6973495e5c94d0004aebd7b8f0e033112134 (plain)
1
2
3
4
5
6
7
8
9
10
#include "buffer.h"

void buffer_init(buffer *s,int (*op)(),int fd,char *buf,unsigned int len)
{
  s->x = buf;
  s->fd = fd;
  s->op = op;
  s->p = 0;
  s->n = len;
}