summaryrefslogtreecommitdiff
path: root/pbm/libpbm.h
blob: 7b80f2f1fda34e1d700aed8eddf3964556a6b407 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* libpbm.h - internal header file for libpbm portable bitmap library
*/

#ifndef _LIBPBM_H_
#define _LIBPBM_H_

/* Here are some routines internal to the pbm library. */

char pbm_getc ARGS(( FILE* file ));
unsigned char pbm_getrawbyte ARGS(( FILE* file ));
int pbm_getint ARGS(( FILE* file ));

int pbm_readmagicnumber ARGS(( FILE* file ));

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

#endif /*_LIBPBM_H_*/