#ifndef PPM_H #define PPM_H void save_as_ppm(char* file_path, int *t, int width, int height); int *load_from_ppm(char *file_path, int *width, int *height); void free_ppm(int *img); #endif