#include <sys/types.h>
Go to the source code of this file.
|
| #define | stralloc_0(sa) stralloc_append(sa,"") |
| |
| #define | stralloc_catlong(sa, l) (stralloc_catlong0((sa),(l),0)) |
| |
| #define | stralloc_catuint0(sa, i, n) (stralloc_catulong0((sa),(i),(n))) |
| |
| #define | stralloc_catint0(sa, i, n) (stralloc_catlong0((sa),(i),(n))) |
| |
| #define | stralloc_catint(sa, i) (stralloc_catlong0((sa),(i),0)) |
| |
|
| int | stralloc_ready (stralloc *sa, size_t len) |
| |
| int | stralloc_readyplus (stralloc *sa, size_t len) |
| |
| int | stralloc_copy (stralloc *, stralloc *) |
| |
| int | stralloc_cat (stralloc *, stralloc *) |
| |
| int | stralloc_copys (stralloc *, const char *) |
| |
| int | stralloc_cats (stralloc *, const char *) |
| |
| int | stralloc_copyb (stralloc *, const char *, unsigned int) |
| |
| int | stralloc_catb (stralloc *, const char *, unsigned int) |
| |
| int | stralloc_append (stralloc *sa, const char *in) |
| |
| int | stralloc_starts (stralloc *, const char *) |
| |
| int | stralloc_catulong0 (stralloc *, unsigned long, unsigned int) |
| |
| int | stralloc_catlong0 (stralloc *, long, unsigned int) |
| |
| void | stralloc_free (stralloc *) |
| |
◆ stralloc_0
◆ stralloc_catint
◆ stralloc_catint0
◆ stralloc_catlong
◆ stralloc_catuint0
◆ stralloc
◆ stralloc_append()
| int stralloc_append |
( |
stralloc * |
sa, |
|
|
const char * |
in |
|
) |
| |
◆ stralloc_cat()
◆ stralloc_catb()
| int stralloc_catb |
( |
stralloc * |
sa, |
|
|
const char * |
s, |
|
|
unsigned int |
n |
|
) |
| |
◆ stralloc_catlong0()
| int stralloc_catlong0 |
( |
stralloc * |
sa, |
|
|
long |
l, |
|
|
unsigned int |
n |
|
) |
| |
◆ stralloc_cats()
| int stralloc_cats |
( |
stralloc * |
sa, |
|
|
const char * |
s |
|
) |
| |
◆ stralloc_catulong0()
| int stralloc_catulong0 |
( |
stralloc * |
sa, |
|
|
unsigned long |
u, |
|
|
unsigned int |
n |
|
) |
| |
◆ stralloc_copy()
◆ stralloc_copyb()
| int stralloc_copyb |
( |
stralloc * |
sa, |
|
|
const char * |
s, |
|
|
unsigned int |
n |
|
) |
| |
◆ stralloc_copys()
| int stralloc_copys |
( |
stralloc * |
sa, |
|
|
const char * |
s |
|
) |
| |
◆ stralloc_free()
◆ stralloc_ready()
| int stralloc_ready |
( |
stralloc * |
sa, |
|
|
size_t |
len |
|
) |
| |
◆ stralloc_readyplus()
| int stralloc_readyplus |
( |
stralloc * |
sa, |
|
|
size_t |
len |
|
) |
| |
◆ stralloc_starts()
| int stralloc_starts |
( |
stralloc * |
sa, |
|
|
const char * |
s |
|
) |
| |