1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
/********************************************************
* font.h -- Definitions for the font package *
* package. *
* *
* Procedures *
* load_fonts -- load a font file onto the symbol *
* table *
********************************************************/
extern struct symbol *font_symbol_ptr; /* A list of
legal fonts */
/********************************************************
* load_fonts -- load fonts into symbol table *
* *
* Parameters *
* file_name -- filename of file to load *
* *
* Aborts on error *
********************************************************/
void load_fonts(char *name);
|