2024-09-13 05:39:54 -05:00

14 lines
197 B
C

#pragma once
#include <stdint.h>
struct ppm_header {
int width;
int height;
int colors;
uint8_t * data;
int length;
};
int ppm_parse(uint8_t * buf, int size, struct ppm_header * out);