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