libowfat/buffer/buffer_puts.c
leitner 5eb1cdf888 cleanups in stralloc and buffer:
int -> long for sizes
    char -> unsigned char for strings
2004-11-25 21:29:35 +00:00

7 lines
129 B
C

#include "str.h"
#include "buffer.h"
int buffer_puts(buffer* b,const unsigned char* x) {
return buffer_put(b,x,str_len(x));
}