14 lines
258 B
C
14 lines
258 B
C
#include <stdint.h>
|
|
#include <stdio.h>
|
|
|
|
//const unsigned char img_png_signature[] = {0x89, 'P', 'N', 'G', '\r', '\n', 0x1a, '\n'};
|
|
|
|
struct img_png_chunk {
|
|
int length;
|
|
int chunk_type;
|
|
char* chunk_data;
|
|
int crc;
|
|
};
|
|
|
|
uint8_t* img_png_decode (FILE* fp);
|