diff options
Diffstat (limited to 'lisiblepng/src/deflate.h')
| -rw-r--r-- | lisiblepng/src/deflate.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lisiblepng/src/deflate.h b/lisiblepng/src/deflate.h new file mode 100644 index 0000000..e40f816 --- /dev/null +++ b/lisiblepng/src/deflate.h @@ -0,0 +1,11 @@ +#ifndef LISIBLE_PNG_DEFLATE_H +#define LISIBLE_PNG_DEFLATE_H + +#include <stdbool.h> +#include <stdint.h> +#include <stdlib.h> + +bool zlib_decompress(const uint8_t *compressed_data_buffer, + const size_t compressed_data_length); + +#endif // LISIBLE_PNG_DEFLATE_H |
