foxp/src/extstring.h
2024-06-03 23:02:30 +05:00

10 lines
244 B
C

struct Extstring {
char symbol;
struct Extstring* next;
};
void es_addsymbol(struct Extstring* string, char symbol);
int es_size(struct Extstring* string);
void es_free(struct Extstring* string);
char* es_tostring(struct Extstring* string);