1*21316Sdist /* 2*21316Sdist * Copyright (c) 1980 Regents of the University of California. 3*21316Sdist * All rights reserved. The Berkeley software License Agreement 4*21316Sdist * specifies the terms and conditions for redistribution. 5*21316Sdist * 6*21316Sdist * @(#)vfont.h 5.1 (Berkeley) 05/30/85 7*21316Sdist */ 812199Ssam 912199Ssam /* 1012199Ssam * The structures header and dispatch define the format of a font file. 1112199Ssam * 1212199Ssam * See vfont(5) for more details. 1312199Ssam */ 1412199Ssam struct header { 1512199Ssam short magic; 1612199Ssam unsigned short size; 1712199Ssam short maxx; 1812199Ssam short maxy; 1912199Ssam short xtend; 2012199Ssam }; 2112199Ssam 2212199Ssam struct dispatch { 2312199Ssam unsigned short addr; 2412199Ssam short nbytes; 2512199Ssam char up,down,left,right; 2612199Ssam short width; 2712199Ssam }; 28