typedef unsigned short u_short;

typedef unsigned long u_long;
/*
 *	Structure of a bitmapped character
 */
typedef struct b_char {
	u_short	bc_width;
	u_short	bc_height;
	short	bc_xoffs;
	short	bc_yoffs;
	u_long	bc_raster_index;
	u_long	bc_effective_width;
} b_char;

typedef struct b_font {
	u_short   bf_nchars;	/* how many chars in this font */
	b_char  * bf_char;	/* array of b_char structures */
	u_long	* bf_raster;	/* the 32-bit rasters themselves */
} b_font;
