home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / NETWORK / netpbm_src.lzh / NETPBM / PBM / libpbm.h < prev    next >
Text File  |  1996-11-18  |  438b  |  18 lines

  1. /* libpbm.h - internal header file for libpbm portable bitmap library
  2. */
  3.  
  4. #ifndef _LIBPBM_H_
  5. #define _LIBPBM_H_
  6.  
  7. /* Here are some routines internal to the pbm library. */
  8.  
  9. char pbm_getc ARGS(( FILE* file ));
  10. unsigned char pbm_getrawbyte ARGS(( FILE* file ));
  11. int pbm_getint ARGS(( FILE* file ));
  12.  
  13. int pbm_readmagicnumber ARGS(( FILE* file ));
  14.  
  15. void pbm_readpbminitrest ARGS(( FILE* file, int* colsP, int* rowsP ));
  16.  
  17. #endif /*_LIBPBM_H_*/
  18.