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);