1stralloc_0(3) Library Functions Manual stralloc_0(3)
23
4
NAME
6stralloc_0 - append \0 to a stralloc
7
SYNTAX
9#include <stralloc.h>
1011
int stralloc_0(stralloc* sa);
12
DESCRIPTION
14stralloc_0 appends \0 to a stralloc.
1516
It is a shortcut for stralloc_append(sa,"").
17
RETURN VALUE
191 for success, 0 on memory allocation failure.
20
SEE ALSO
22stralloc_append(3)
2324
25
26
stralloc_0(3)