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