121316Sdist /* 237620Sbostic * Copyright (c) 1989 The Regents of the University of California. 337620Sbostic * All rights reserved. 421316Sdist * 5*42617Sbostic * %sccs.include.redist.c% 637620Sbostic * 7*42617Sbostic * @(#)vfont.h 5.3 (Berkeley) 06/01/90 821316Sdist */ 912199Ssam 1012199Ssam /* 1112199Ssam * The structures header and dispatch define the format of a font file. 1212199Ssam * 1312199Ssam * See vfont(5) for more details. 1412199Ssam */ 1512199Ssam struct header { 1612199Ssam short magic; 1712199Ssam unsigned short size; 1812199Ssam short maxx; 1912199Ssam short maxy; 2012199Ssam short xtend; 2112199Ssam }; 2212199Ssam 2312199Ssam struct dispatch { 2412199Ssam unsigned short addr; 2512199Ssam short nbytes; 2612199Ssam char up,down,left,right; 2712199Ssam short width; 2812199Ssam }; 29