Add a string type with `struct` and handle the string operations in functions. Possible `struct` definition: ```C struct sf_str { char *str; size_t alloc_len; size_t len; }; ```
Add a string type with
structand handle the string operations in functions.Possible
structdefinition: