lambda-calc-1/stringtree/append.h
2025-01-13 20:36:07 -06:00

21 lines
422 B
C

#include <wchar.h>
struct stringtree;
struct string;
void stringtree_append_cstr(
struct stringtree* this,
const wchar_t* cstr);
void stringtree_append_string(
struct stringtree* this,
struct string* string);
void stringtree_append_formatstr(
struct stringtree* this,
const char* fmt, ...);
void stringtree_append_stringtree(
struct stringtree* this,
struct stringtree* subtree);