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) 5/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 {
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: };
Defined struct's
defined in line
14; used 14 times
Usage of this include