File: buffer.c

package info (click to toggle)
checkpw 1.02-1.1
  • links: PTS
  • area: main
  • in suites: bullseye, buster, jessie, jessie-kfreebsd, stretch
  • size: 552 kB
  • sloc: ansic: 2,169; makefile: 396; sh: 189
file content (10 lines) | stat: -rw-r--r-- 167 bytes parent folder | download | duplicates (29)
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;
}