/usr/include/libpbm.h is in libnetpbm9-dev 2:10.0-15.3build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | /* 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_*/
|