init a {char*, size_t} pair for use as string*/
| 297 | |
| 298 | /*init a {char*, size_t} pair for use as string*/ |
| 299 | static void string_init(char** out) |
| 300 | { |
| 301 | *out = NULL; |
| 302 | string_resize(out, 0); |
| 303 | } |
| 304 | |
| 305 | /*free the above pair again*/ |
| 306 | static void string_cleanup(char** out) |
no test coverage detected