aboutsummaryrefslogtreecommitdiff
path: root/src/ppm.h
blob: 1fff658535e956a2b886cea0f68f7a80c261ed79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef PPM_H
#define PPM_H

#include <stdint.h>
typedef uint8_t small_t;

void save_as_ppm(char* file_path, small_t *t, size_t width, size_t height, size_t scaler);

small_t *load_from_ppm(char *file_path, size_t *width, size_t *height);

void free_ppm(small_t *img);

#endif