install with -s
[unix-history] / usr / src / old / vpr / vfont.h
CommitLineData
bb0cfa24
DF
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) %G%
7 */
6842e779
SL
8
9/*
10 * The structures header and dispatch define the format of a font file.
11 *
12 * See vfont(5) for more details.
13 */
14struct header {
15 short magic;
16 unsigned short size;
17 short maxx;
18 short maxy;
19 short xtend;
20};
21
22struct dispatch {
23 unsigned short addr;
24 short nbytes;
25 char up,down,left,right;
26 short width;
27};