home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 9
/
CD_ASCQ_09_1193.iso
/
news
/
4441
/
mpegcode
/
src
/
pbmplus
/
pbm
/
libpbm.h
next >
Wrap
C/C++ Source or Header
|
1993-09-27
|
455b
|
18 lines
/* 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_*/