date and time created 83/08/05 13:34:33 by sam
[unix-history] / usr / src / old / vpr / vfont.h
CommitLineData
6842e779
SL
1/* vfont.h 4.1 83/05/03 */
2
3/*
4 * The structures header and dispatch define the format of a font file.
5 *
6 * See vfont(5) for more details.
7 */
8struct header {
9 short magic;
10 unsigned short size;
11 short maxx;
12 short maxy;
13 short xtend;
14};
15
16struct dispatch {
17 unsigned short addr;
18 short nbytes;
19 char up,down,left,right;
20 short width;
21};