blob: b68e77c8603b1c940877fab7fafe30eb0381ab2c (
plain)
1
2
3
4
5
6
7
8
9
10
|
#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
|