| 4533 | } |
| 4534 | |
| 4535 | STBIDEF char *stbi_zlib_decode_malloc(char const *buffer, int len, int *outlen) |
| 4536 | { |
| 4537 | return stbi_zlib_decode_malloc_guesssize(buffer, len, 16384, outlen); |
| 4538 | } |
| 4539 | |
| 4540 | STBIDEF char *stbi_zlib_decode_malloc_guesssize_headerflag(const char *buffer, int len, int initial_size, int *outlen, int parse_header) |
| 4541 | { |
nothing calls this directly
no test coverage detected