diff options
| author | Clement Sibille <clements+git@lisible.xyz> | 2024-02-26 02:20:32 +0900 |
|---|---|---|
| committer | Clement Sibille <clements+git@lisible.xyz> | 2024-02-26 02:20:32 +0900 |
| commit | ea36f30a8e1993d4aacc8974cd0994db67902467 (patch) | |
| tree | 71fbf9ce5aa8d468277d2caf25ae925a0d42d59d /lisiblepng/src/deflate.h | |
Initial commit
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 |
