File: buffer.c

package info (click to toggle)
tinydyndns 0.4.2.debian1-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,476 kB
  • sloc: ansic: 10,262; sh: 291; makefile: 42
file content (10 lines) | stat: -rw-r--r-- 167 bytes parent folder | download | duplicates (33)
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;
}