From 1fd361a1ea06e44286c213ca1f814f49306fdc43 Mon Sep 17 00:00:00 2001 From: giraffedata Date: Sat, 19 Aug 2006 03:12:28 +0000 Subject: Create Subversion repository git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@1 9d0c8265-081b-0410-96cb-a4ca84ce46f8 --- lib/libpgm.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 lib/libpgm.h (limited to 'lib/libpgm.h') diff --git a/lib/libpgm.h b/lib/libpgm.h new file mode 100644 index 00000000..ba51f9a9 --- /dev/null +++ b/lib/libpgm.h @@ -0,0 +1,24 @@ +/* This is the intra-libnetpbm interface header file for libpgm*.c +*/ + +#ifndef LIBPGM_H_INCLUDED +#define LIBPGM_H_INCLUDED + +#include "pgm.h" + +void +pgm_readpgminitrest(FILE * const file, + int * const colsP, + int * const rowsP, + gray * const maxvalP); + +gray +pgm_getrawsample(FILE * const file, + gray const maxval); + +void +pgm_writerawsample(FILE * const fileP, + gray const val, + gray const maxval); + +#endif -- cgit 1.4.1