image-viewer/img_png.h
2025-06-04 23:54:47 +02:00

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);