2 * Copyright (c) 1980, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * @(#) Copyright (c) 1980, 1993 The Regents of the University of California. All rights reserved.
34 * @(#)colcrt.c 8.1 (Berkeley) 6/6/93
35 * $FreeBSD: src/usr.bin/colcrt/colcrt.c,v 1.5.2.4 2001/08/02 01:29:07 obrien Exp $
36 * $DragonFly: src/usr.bin/colcrt/colcrt.c,v 1.5 2005/08/04 17:31:22 drhodus Exp $
45 * colcrt - replaces col for crts with new nroff esp. when using tbl.
46 * Bill Joy UCB July 14, 1977
48 * This filter uses a screen buffer, 267 half-lines by 132 columns.
49 * It interprets the up and down sequences generated by the new
50 * nroff when used with tbl and by \u \d and \r.
51 * General overstriking doesn't work correctly.
52 * Underlining is split onto multiple lines, etc.
54 * Option - suppresses all underlining.
55 * Option -2 forces printing of all half lines.
68 int main(int, char *[]);
69 static void move(int, int);
70 static void pflush(int);
71 static int plus(char, char);
72 static void usage(void);
75 main(int argc, char **argv)
81 while ((ch = getopt(argc, argv, "-2")) != -1)
98 if (!(f = fopen(argv[0], "r"))) {
100 err(1, "%s", argv[0]);
156 cp = &page[outline][outcol];
167 for (cp--; cp >= dp && *cp == 0; cp--)
170 if (plus(c, *cp) || plus(*cp, c))
172 else if (*cp == ' ' || *cp == 0)
185 fprintf(stderr, "usage: colcrt [-] [-2] [file ...]\n");
193 return ((c == '|' && d == '-') || d == '_');
212 for (i = first | 1; i < l; i++) {
216 for (i = first; i < l; i++) {
218 if (printall == 0 && lastomit == 0 && *cp == 0) {
225 bcopy(page[ol], page, (267 - ol) * 132);
226 bzero(page[267- ol], ol * 132);
237 for (cp = page[l], dp = page[m]; *cp; cp++, dp++) {
240 if (*dp != ' ' && *dp != '|' && *dp != 0)
250 for (cp = page[l], dp = page[m]; *cp; cp++, dp++)