summaryrefslogtreecommitdiff
path: root/src/pnm.h
blob: d2e9d01000275b91790627a6ec3b8035c02d583f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>

struct pnm {
	int format;
	int width;
	int height;
	int maxval;
};


int readPnmHeader(FILE *fp, struct pnm *h);

int writePnmHeader(FILE *fp, const struct pnm *h);