image-viewer/formats/img_png.h
2025-06-10 07:22:49 +02:00

17 lines
234 B
C

#ifndef IMG_PNG_H
#define IMG_PNG_H
#include <stdint.h>
#include <stdio.h>
struct img_png_chunk {
unsigned char* chunk_data;
uint32_t length;
uint32_t crc;
char chunk_type[4];
};
uint8_t* img_png_decode (FILE* fp);
#endif