#ifndef ABC_STR_H #define ABC_STR_H struct Str { char cstr[7]; char *end; }; // set str->cstr to empty string void clearStr(struct Str *str); // append character to str->cstr void appendCharToStr(struct Str *str, char c); #endif // ABC_STR_H