/* * FontTest * -------- * A simple program for showing you how to change the font. * * There are five pre-defined fonts: SystemFont which is * used in buttons, FixedFont which is used for text where * each character is of a fixed width, Times, Helvetica and * Courier which are normal writing fonts. */ #include void main(void) { gprintf("SystemFont\n"); setfont(FixedFont); gprintf("FixedFont\n"); setfont(Times); gprintf("Times\n"); setfont(Helvetica); gprintf("Helvetica\n"); setfont(Courier); gprintf("Courier\n"); }