]>
git.saurik.com Git - apple/shell_cmds.git/blob - window/ttinit.c
f9e2d428a0e7eb2af81a44b0c66d364788a7c67c
1 /* $NetBSD: ttinit.c,v 1.4 1997/11/21 08:36:32 lukem Exp $ */
4 * Copyright (c) 1983, 1993
5 * The Regents of the University of California. All rights reserved.
7 * This code is derived from software contributed to Berkeley by
8 * Edward Wang at The University of California, Berkeley.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by the University of
21 * California, Berkeley and its contributors.
22 * 4. Neither the name of the University nor the names of its contributors
23 * may be used to endorse or promote products derived from this software
24 * without specific prior written permission.
26 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39 #include <sys/cdefs.h>
42 static char sccsid
[] = "@(#)ttinit.c 8.1 (Berkeley) 6/6/93";
44 __RCSID("$NetBSD: ttinit.c,v 1.4 1997/11/21 08:36:32 lukem Exp $");
53 struct tt_tab tt_tab
[] = {
56 { "f100", 4, tt_f100
},
57 { "tvi925", 6, tt_tvi925
},
58 { "wyse75", 6, tt_wyse75
},
59 { "wyse60", 6, tt_wyse60
},
60 { "w60", 3, tt_wyse60
},
61 { "zapple", 6, tt_zapple
},
62 { "zentec", 6, tt_zentec
},
63 { "generic", 0, tt_generic
},
78 * Set output buffer size to about 1 second of output time.
80 i
= MIN(wwbaud
/10, 512);
81 if ((tt_ob
= malloc((unsigned) i
)) == 0) {
89 * Use the standard name of the terminal (i.e. the second
92 for (p
= wwtermcap
; *p
&& *p
!= '|' && *p
!= ':'; p
++)
96 for (q
= p
; *q
&& *q
!= '|' && *q
!= ':'; q
++)
98 if (q
!= p
&& (t
= malloc((unsigned) (q
- p
+ 1))) != 0) {
104 for (tp
= tt_tab
; tp
->tt_name
!= 0; tp
++)
105 if (strncmp(tp
->tt_name
, wwterm
, tp
->tt_len
) == 0)
107 if (tp
->tt_name
== 0) {
108 wwerrno
= WWE_BADTERM
;
111 if ((*tp
->tt_func
)() < 0) {
112 wwerrno
= WWE_CANTDO
;
115 if (wwgetttysize(0, &tt
.tt_nrow
, &tt
.tt_ncol
) < 0)
117 tt
.tt_scroll_top
= 0;
118 tt
.tt_scroll_bot
= tt
.tt_nrow
- 1;