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