libowfat/stralloc/stralloc_cats.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

8 lines
154 B
C

#include "stralloc.h"
#include "str.h"
extern int stralloc_cats(stralloc *sa,const unsigned char *buf) {
return stralloc_catb(sa,buf,str_len(buf));
}