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

#ifndef LIBPBM_H_INCLUDED
#define LIBPBM_H_INCLUDED

#include <stdio.h>

void
pbm_readpbminitrest(FILE * file,
                    int  * colsP,
                    int *  rowsP);

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

#endif