blob: 549e0a4e237801eca4cbb9fa60951ec6b8b9ba68 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef LISIBLE_PNG_H
#define LISIBLE_PNG_H
#include <stdio.h>
#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
|