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 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: };
Last modified: 1987-02-08
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 1896
Valid CSS Valid XHTML 1.0 Strict