From f158268a0d59133b7cef538b3fa57ece16f2981d Mon Sep 17 00:00:00 2001 From: kartofen Date: Mon, 8 Aug 2022 16:16:47 +0300 Subject: Big Bang --- src/ppm.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/ppm.h (limited to 'src/ppm.h') diff --git a/src/ppm.h b/src/ppm.h new file mode 100644 index 0000000..b68e77c --- /dev/null +++ b/src/ppm.h @@ -0,0 +1,10 @@ +#ifndef PPM_H +#define PPM_H + +void save_as_ppm(char* file_path, int *t, int width, int height); + +int *load_from_ppm(char *file_path, int *width, int *height); + +void free_ppm(int *img); + +#endif -- cgit v1.2.3