lisp-take-1/stringtree/append.h
2024-11-28 18:36:25 -06:00

20 lines
412 B
C

struct stringtree;
struct string;
void stringtree_append_string(
struct stringtree* this,
struct string* string);
void stringtree_append_string_const(
struct stringtree* this,
const char* cstr);
void stringtree_append_formatstr(
struct stringtree* this,
const char* fmt, ...);
void stringtree_append_stringtree(
struct stringtree* this,
struct stringtree* subtree);