1 2 3 4 5 6 7 8 9 10
#ifndef MUON_EXTERNAL_ZLIB_H #define MUON_EXTERNAL_ZLIB_H #include <stdbool.h> #include <stdint.h> extern const bool have_zlib; bool muon_zlib_extract(uint8_t *data, uint64_t len, const char *destdir); #endif