cleanups in stralloc and buffer:

int -> long for sizes
    char -> unsigned char for strings
This commit is contained in:
leitner
2004-11-25 21:29:35 +00:00
parent 38ef27207a
commit 5eb1cdf888
75 changed files with 188 additions and 132 deletions

View File

@@ -1,6 +1,7 @@
#include "buffer.h"
void buffer_init(buffer* b,int (*op)(),int fd,char* y,unsigned int ylen) {
void buffer_init(buffer* b,int (*op)(),int fd,
unsigned char* y,unsigned long int ylen) {
b->op=op;
b->fd=fd;
b->x=y;