/* fontdefs.h: font structure and associated constants. */ #define nchars 128 /*number of chars in char set*/ #define nlines 16 /*number of lines above base line in a banner character*/ #define dlines 3 /*number of lines desending in a banner character*/ #define mxl 19 /*number of lines max. in a banner character*/ #define mxw 32 /* max width of a banner character. */ #define wbytes 4 /* number of bytes per line in bitmask. */ struct chr { int c_width; /* width of this character */ int c_height; /* height of this character */ int c_descend; /* decesending amount for this character */ char c_bitmap[mxl*wbytes]; /* one mask for each line */ };