blob: fa82d7af286ad6973a051cec92caef6bb85b2d72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef __PPM__
#define __PPM__
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include "common.h"
void ppm_read(const char *file, Image *img);
void ppm_write(const char *file, Image *img);
#endif
|