blob: e40f816b62d9d5fef1c16a8f3ebc606f26dc65e7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
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
|