MCPcopy Create free account
hub / github.com/OpenFodder/openfodder / stbi__do_zlib

Function stbi__do_zlib

Source/Utils/stb_image.h:4509–4517  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4507}
4508
4509static int stbi__do_zlib(stbi__zbuf *a, char *obuf, int olen, int exp, int parse_header)
4510{
4511 a->zout_start = obuf;
4512 a->zout = obuf;
4513 a->zout_end = obuf + olen;
4514 a->z_expandable = exp;
4515
4516 return stbi__parse_zlib(a, parse_header);
4517}
4518
4519STBIDEF char *stbi_zlib_decode_malloc_guesssize(const char *buffer, int len, int initial_size, int *outlen)
4520{

Calls 1

stbi__parse_zlibFunction · 0.85

Tested by

no test coverage detected