1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #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
|