12 lines
288 B
C
12 lines
288 B
C
/* libppm.h - internal header file for libppm portable pixmap library
|
|
*/
|
|
|
|
#ifndef _LIBPPM_H_
|
|
#define _LIBPPM_H_
|
|
|
|
/* Here are some routines internal to the ppm library. */
|
|
|
|
EXPCL_PANDA void ppm_readppminitrest( FILE* file, int* colsP, int* rowsP, pixval* maxvalP );
|
|
|
|
#endif /*_LIBPPM_H_*/
|