init a {char*, size_t} pair for use as string*/
| 288 | |
| 289 | /*init a {char*, size_t} pair for use as string*/ |
| 290 | static void string_init(char** out) |
| 291 | { |
| 292 | *out = NULL; |
| 293 | string_resize(out, 0); |
| 294 | } |
| 295 | |
| 296 | /*free the above pair again*/ |
| 297 | static void string_cleanup(char** out) |
no test coverage detected