/* * ppmutil.h: Header file for ppmutils.c * * Oct.6.'94. Oshiro. */ #ifndef _PPMUTILS_H #define _PPMUTILS_H #define PPMUTILS_CHECK_STR_MAX 256 int CheckPPMFile(FILE *fp, int *type, int *width, int *height, int *depth); FILE *OpenAndCheckPPMFile(char *fname, int *type, int *width, int *height, int *depth); #endif _PPMUTILS_H