move lint into the pcc directory
[unix-history] / usr / src / old / vpr / vfont.h
CommitLineData
bb0cfa24 1/*
336e3360
KB
2 * Copyright (c) 1989 The Regents of the University of California.
3 * All rights reserved.
bb0cfa24 4 *
269a7923 5 * %sccs.include.redist.c%
336e3360 6 *
269a7923 7 * @(#)vfont.h 5.3 (Berkeley) %G%
bb0cfa24 8 */
6842e779
SL
9
10/*
11 * The structures header and dispatch define the format of a font file.
12 *
13 * See vfont(5) for more details.
14 */
15struct header {
16 short magic;
17 unsigned short size;
18 short maxx;
19 short maxy;
20 short xtend;
21};
22
23struct dispatch {
24 unsigned short addr;
25 short nbytes;
26 char up,down,left,right;
27 short width;
28};