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