| 2301 | static void zconf_endfile(void); |
| 2302 | |
| 2303 | static void new_string(void) |
| 2304 | { |
| 2305 | text = xmalloc(START_STRSIZE); |
| 2306 | text_asize = START_STRSIZE; |
| 2307 | text_size = 0; |
| 2308 | *text = 0; |
| 2309 | } |
| 2310 | |
| 2311 | static void append_string(const char *str, int size) |
| 2312 | { |
no test coverage detected