about summary refs log tree commit diff
path: root/lib/libppm.h
blob: 620768a293a67ff7f1f0ca825e918f8f31ff7b2a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* This is the intra-libnetpbm interface header file for libppm*.c
*/

#ifndef LIBPPM_H_INCLUDED
#define LIBPPM_H_INCLUDED

#include "ppm.h"

void
ppm_readppminitrest(FILE *   const file,
                    int *    const colsP,
                    int *    const rowsP,
                    pixval * const maxvalP);

void
ppm_validateComputableSize(unsigned int const cols,
                           unsigned int const rows);

#endif