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