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

6 lines
73 B
C

#include <stralloc.h>
void stralloc_zero(stralloc* sa) {
sa->len=0;
}