blob: 8ef66cc1df8d689119915656b7220ba2a39a94dd (
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, size_t width, size_t height);
int *load_from_ppm(char *file_path, size_t *width, size_t *height);
void free_ppm(int *img);
#endif
|