diff options
author | kartofen <mladenovnasko0@gmail.com> | 2022-08-09 00:35:47 +0300 |
---|---|---|
committer | kartofen <mladenovnasko0@gmail.com> | 2022-08-09 00:35:47 +0300 |
commit | a68cc52b5c5d1c104de8d675b90816aaa39f4ace (patch) | |
tree | d4d7d095b812349c1d8c90e20e91d18d25a88374 /src/ppm.h | |
parent | c6862f7f703bcff364573e95f180f05ce8e45040 (diff) |
nearly works
Diffstat (limited to 'src/ppm.h')
-rw-r--r-- | src/ppm.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,9 +1,9 @@ #ifndef PPM_H #define PPM_H -void save_as_ppm(char* file_path, int *t, int width, int height); +void save_as_ppm(char* file_path, int *t, size_t width, size_t height); -int *load_from_ppm(char *file_path, int *width, int *height); +int *load_from_ppm(char *file_path, size_t *width, size_t *height); void free_ppm(int *img); |