1 /* 2 * Copyright (c) 1989 The Regents of the University of California. 3 * All rights reserved. 4 * 5 * %sccs.include.redist.c% 6 * 7 * @(#)vfont.h 5.3 (Berkeley) 06/01/90 8 */ 9 10 /* 11 * The structures header and dispatch define the format of a font file. 12 * 13 * See vfont(5) for more details. 14 */ 15 struct header { 16 short magic; 17 unsigned short size; 18 short maxx; 19 short maxy; 20 short xtend; 21 }; 22 23 struct dispatch { 24 unsigned short addr; 25 short nbytes; 26 char up,down,left,right; 27 short width; 28 }; 29