From ea36f30a8e1993d4aacc8974cd0994db67902467 Mon Sep 17 00:00:00 2001 From: Clement Sibille Date: Mon, 26 Feb 2024 02:20:32 +0900 Subject: Initial commit --- lisiblepng/src/lisiblepng.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 lisiblepng/src/lisiblepng.h (limited to 'lisiblepng/src/lisiblepng.h') diff --git a/lisiblepng/src/lisiblepng.h b/lisiblepng/src/lisiblepng.h new file mode 100644 index 0000000..549e0a4 --- /dev/null +++ b/lisiblepng/src/lisiblepng.h @@ -0,0 +1,15 @@ +#ifndef LISIBLE_PNG_H +#define LISIBLE_PNG_H + +#include + +#define LISIBLE_PNG_COMPUTE_CRC + +struct Png; +typedef struct Png Png; + +Png *lis_Png_parse(FILE *stream); +void lis_Png_dump_ppm(const Png *png); +void lis_Png_destroy(Png *png); + +#endif // LISIBLE_PNG_H -- cgit v1.2.3