21 lines
426 B
C
21 lines
426 B
C
|
|
#include <wchar.h>
|
|
|
|
struct stringtree;
|
|
struct string;
|
|
|
|
void stringtree_prepend_cstr(
|
|
struct stringtree* this,
|
|
const wchar_t* cstr);
|
|
|
|
void stringtree_prepend_string(
|
|
struct stringtree* this,
|
|
struct string* string);
|
|
|
|
void stringtree_prepend_formatstr(
|
|
struct stringtree* this,
|
|
const char* fmt, ...);
|
|
|
|
void stringtree_prepend_stringtree(
|
|
struct stringtree* this,
|
|
struct stringtree* subtree);
|