init a {char*, size_t} pair for use as string*/
| 305 | |
| 306 | /*init a {char*, size_t} pair for use as string*/ |
| 307 | static void string_init(char** out) |
| 308 | { |
| 309 | *out = NULL; |
| 310 | string_resize(out, 0); |
| 311 | } |
| 312 | |
| 313 | /*free the above pair again*/ |
| 314 | static void string_cleanup(char** out) |
no test coverage detected