#ifndef __PPM_H__ #define __PPM_H__ typedef struct _ppm_image { int width; int height; unsigned char *data; } PpmImage; int LoadPpmFile(char *filename, PpmImage *ppm); #endif /* __PPM_H__ */