aboutsummaryrefslogtreecommitdiff
path: root/src/ppm.h
diff options
context:
space:
mode:
authorkartofen <mladenovnasko0@gmail.com>2022-08-09 00:35:47 +0300
committerkartofen <mladenovnasko0@gmail.com>2022-08-09 00:35:47 +0300
commita68cc52b5c5d1c104de8d675b90816aaa39f4ace (patch)
treed4d7d095b812349c1d8c90e20e91d18d25a88374 /src/ppm.h
parentc6862f7f703bcff364573e95f180f05ce8e45040 (diff)
nearly works
Diffstat (limited to 'src/ppm.h')
-rw-r--r--src/ppm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ppm.h b/src/ppm.h
index b68e77c..8ef66cc 100644
--- a/src/ppm.h
+++ b/src/ppm.h
@@ -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);