banner.h revision 1.1 1 /* $NetBSD: banner.h,v 1.1 1995/04/09 05:53:05 cgd Exp $ */
2 /*
3 * Various defines needed for code lifted from lpd.
4 *
5 * @(#)Copyright (c) 1995, Simon J. Gerraty.
6 *
7 * This is free software. It comes with NO WARRANTY.
8 * Permission to use, modify and distribute this source code
9 * is granted subject to the following conditions.
10 * 1/ that the above copyright notice and this notice
11 * are preserved in all copies and that due credit be given
12 * to the author.
13 * 2/ that any changes to this code are clearly commented
14 * as such so that the author does not get blamed for bugs
15 * other than his own.
16 *
17 * Please send copies of changes and bug-fixes to:
18 * sjg (at) zen.void.oz.au
19 */
20
21 #define LINELEN 132
22 #define BACKGND ' '
23
24 #ifdef LPD_CHSET
25 #define HEIGHT 9 /* height of characters */
26 #define DROP 3 /* offset to drop characters with descenders */
27 #else
28 #define HEIGHT 8 /* height of characters */
29 #define DROP 0 /* offset to drop characters with descenders */
30 #endif
31 #define WIDTH 8 /* width of characters */
32
33