xref: /original-bsd/old/vpr/vfont.h (revision a141c157)
1 /*
2  * Copyright (c) 1980 Regents of the University of California.
3  * All rights reserved.  The Berkeley software License Agreement
4  * specifies the terms and conditions for redistribution.
5  *
6  *	@(#)vfont.h	5.1 (Berkeley) 05/30/85
7  */
8 
9 /*
10  * The structures header and dispatch define the format of a font file.
11  *
12  * See vfont(5) for more details.
13  */
14 struct header {
15 	short magic;
16 	unsigned short size;
17 	short maxx;
18 	short maxy;
19 	short xtend;
20 };
21 
22 struct dispatch {
23 	unsigned short addr;
24 	short nbytes;
25 	char up,down,left,right;
26 	short width;
27 };
28