Searched defs:custr_t (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/lib/libcmdutils/
H A Dlibcmdutils.h150 typedef struct custr custr_t; typedef in typeref:struct:custr
153 * Allocate and free a "custr_t" dynamic string object. Returns 0 on success
156 extern int custr_alloc(custr_t **);
157 extern void custr_free(custr_t *);
160 * Allocate a "custr_t" dynamic string object that operates on a fixed external
163 extern int custr_alloc_buf(custr_t **, void *, size_t);
170 extern int custr_appendc(custr_t *, char);
171 extern int custr_append(custr_t *, const char *);
178 extern int custr_append_printf(custr_t *, const char *, ...);
179 extern int custr_append_vprintf(custr_t *, cons
[all...]

Completed in 82 milliseconds