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. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * @(#) Copyright (c) 1980, 1993 The Regents of the University of California. All rights reserved.
30 * @(#)colcrt.c 8.1 (Berkeley) 6/6/93
31 * $FreeBSD: head/usr.bin/colcrt/colcrt.c 227158 2011-11-06 08:14:28Z ed $
43 * colcrt - replaces col for crts with new nroff esp. when using tbl.
44 * Bill Joy UCB July 14, 1977
46 * This filter uses a screen buffer, 267 half-lines by 132 columns.
47 * It interprets the up and down sequences generated by the new
48 * nroff when used with tbl and by \u \d and \r.
49 * General overstriking doesn't work correctly.
50 * Underlining is split onto multiple lines, etc.
52 * Option - suppresses all underlining.
53 * Option -2 forces printing of all half lines.
56 static wchar_t page
[267][132];
58 static int outline
= 1;
61 static char suppresul
;
64 static void move(int, int);
65 static void pflush(int);
66 static int plus(wchar_t, wchar_t);
67 static void usage(void);
70 main(int argc
, char *argv
[])
76 setlocale(LC_ALL
, "");
78 while ((ch
= getopt(argc
, argv
, "-2")) != -1)
94 if (freopen(argv
[0], "r", stdin
) == NULL
) {
96 err(1, "%s", argv
[0]);
148 if ((w
= wcwidth(c
)) <= 0)
150 if (outcol
+ w
> 132) {
154 cp
= &page
[outline
][outcol
];
163 for (i
= 0; i
< w
; i
++)
165 dp
= cp
- (outcol
- w
);
166 for (cp
--; cp
>= dp
&& *cp
== 0; cp
--)
169 if (plus(c
, *cp
) || plus(*cp
, c
))
171 else if (*cp
== ' ' || *cp
== 0) {
172 for (i
= 1; i
< w
; i
++)
176 for (i
= 0; i
< w
; i
++)
194 fprintf(stderr
, "usage: colcrt [-] [-2] [file ...]\n");
199 plus(wchar_t c
, wchar_t d
)
202 return ((c
== '|' && d
== '-') || d
== '_');
220 for (i
= first
| 1; i
< l
; i
++) {
224 for (i
= first
; i
< l
; i
++) {
226 if (printall
== 0 && lastomit
== 0 && *cp
== 0) {
231 while (*cp
!= L
'\0') {
232 if ((w
= wcwidth(*cp
)) > 0) {
240 wmemcpy(page
[0], page
[ol
], (267 - ol
) * 132);
241 wmemset(page
[267- ol
], L
'\0', ol
* 132);
252 for (cp
= page
[l
], dp
= page
[m
]; *cp
; cp
++, dp
++) {
255 if (*dp
!= ' ' && *dp
!= '|' && *dp
!= 0)
265 for (cp
= page
[l
], dp
= page
[m
]; *cp
; cp
++, dp
++)