1 /* vfont.h 4.1 83/05/03 */ 2 3 /* 4 * The structures header and dispatch define the format of a font file. 5 * 6 * See vfont(5) for more details. 7 */ 8 struct header { 9 short magic; 10 unsigned short size; 11 short maxx; 12 short maxy; 13 short xtend; 14 }; 15 16 struct dispatch { 17 unsigned short addr; 18 short nbytes; 19 char up,down,left,right; 20 short width; 21 }; 22