aboutsummaryrefslogtreecommitdiff
path: root/src/ppm.h
diff options
context:
space:
mode:
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);