/* pbmfont.h - header file for font routines in libpbm */ #ifndef _PBMFONT_H_ #define _PBMFONT_H_ bit** pbm_defaultfont( int* fcolsP, int* frowsP ); void pbm_dissectfont( bit** font, int frows, int fcols, int* char_heightP, int* char_widthP, int* char_aheightP, int* char_awidthP, int char_row0[], int char_col0[] ); void pbm_dumpfont( bit** font, int fcols, int frows ); #endif /*_PBMFONT_H_*/