Mercurial > emacs
annotate src/termcap.c @ 110875:bb9bf961ba7b
Make emacs_gnutls_read() return the expected on errors.
Also interface cleanups.
author | Lars Magne Ingebrigtsen <larsi@gnus.org> |
---|---|
date | Sat, 09 Oct 2010 15:19:30 +0200 |
parents | 2b72330aa98a |
children | b9752b72e1ee |
rev | line source |
---|---|
7306 | 1 /* Work-alike for termcap, plus extra features. |
64770
a0d1312ede66
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64084
diff
changeset
|
2 Copyright (C) 1985, 1986, 1993, 1994, 1995, 2000, 2001, 2002, 2003, |
100960
69177b934405
Revert copyright year changes for files that are not part of Emacs.
Glenn Morris <rgm@gnu.org>
parents:
100951
diff
changeset
|
3 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. |
7306 | 4 |
5 This program is free software; you can redistribute it and/or modify | |
6 it under the terms of the GNU General Public License as published by | |
7 the Free Software Foundation; either version 2, or (at your option) | |
8 any later version. | |
9 | |
10 This program is distributed in the hope that it will be useful, | |
11 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 GNU General Public License for more details. | |
14 | |
15 You should have received a copy of the GNU General Public License | |
16 along with this program; see the file COPYING. If not, write to | |
64084 | 17 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
18 Boston, MA 02110-1301, USA. */ | |
7306 | 19 |
20 /* Emacs config.h may rename various library functions such as malloc. */ | |
12994
bd38619285f7
Don't assume that HAVE_CONFIG_H implies emacs.
David J. MacKenzie <djm@gnu.org>
parents:
12907
diff
changeset
|
21 #include <config.h> |
105669
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
100960
diff
changeset
|
22 #include <setjmp.h> |
7785 | 23 #include <sys/file.h> |
24 #include <fcntl.h> | |
29804
d8776351a540
[emacs] Test HAVE_FCNTL_H, not USG5. Include lisp.h and unistd.h.
Dave Love <fx@gnu.org>
parents:
23071
diff
changeset
|
25 #ifdef HAVE_UNISTD_H |
d8776351a540
[emacs] Test HAVE_FCNTL_H, not USG5. Include lisp.h and unistd.h.
Dave Love <fx@gnu.org>
parents:
23071
diff
changeset
|
26 #include <unistd.h> |
d8776351a540
[emacs] Test HAVE_FCNTL_H, not USG5. Include lisp.h and unistd.h.
Dave Love <fx@gnu.org>
parents:
23071
diff
changeset
|
27 #endif |
7785 | 28 |
110758
2b72330aa98a
Remove O_RDONLY, O_WRONLY definitions, not needed.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
110734
diff
changeset
|
29 #include "lisp.h" |
2b72330aa98a
Remove O_RDONLY, O_WRONLY definitions, not needed.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
110734
diff
changeset
|
30 |
7306 | 31 #ifndef NULL |
32 #define NULL (char *) 0 | |
33 #endif | |
34 | |
35 /* BUFSIZE is the initial size allocated for the buffer | |
36 for reading the termcap file. | |
37 It is not a limit. | |
38 Make it large normally for speed. | |
39 Make it variable when debugging, so can exercise | |
40 increasing the space dynamically. */ | |
41 | |
42 #ifndef BUFSIZE | |
43 #ifdef DEBUG | |
44 #define BUFSIZE bufsize | |
45 | |
46 int bufsize = 128; | |
47 #else | |
48 #define BUFSIZE 2048 | |
49 #endif | |
50 #endif | |
51 | |
12679
a14b26e55f25
TERMCAP_NAME -> TERMCAP_FILE.
David J. MacKenzie <djm@gnu.org>
parents:
12675
diff
changeset
|
52 #ifndef TERMCAP_FILE |
a14b26e55f25
TERMCAP_NAME -> TERMCAP_FILE.
David J. MacKenzie <djm@gnu.org>
parents:
12675
diff
changeset
|
53 #define TERMCAP_FILE "/etc/termcap" |
7306 | 54 #endif |
55 | |
56 | |
57 /* Looking up capabilities in the entry already found. */ | |
58 | |
59 /* The pointer to the data made by tgetent is left here | |
60 for tgetnum, tgetflag and tgetstr to find. */ | |
61 static char *term_entry; | |
62 | |
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105959
diff
changeset
|
63 static char *tgetst1 (char *ptr, char **area); |
7306 | 64 |
65 /* Search entry BP for capability CAP. | |
66 Return a pointer to the capability (in BP) if found, | |
67 0 if not found. */ | |
68 | |
69 static char * | |
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105959
diff
changeset
|
70 find_capability (register char *bp, register char *cap) |
7306 | 71 { |
72 for (; *bp; bp++) | |
73 if (bp[0] == ':' | |
74 && bp[1] == cap[0] | |
75 && bp[2] == cap[1]) | |
76 return &bp[4]; | |
77 return NULL; | |
78 } | |
79 | |
80 int | |
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105959
diff
changeset
|
81 tgetnum (char *cap) |
7306 | 82 { |
83 register char *ptr = find_capability (term_entry, cap); | |
84 if (!ptr || ptr[-1] != '#') | |
85 return -1; | |
86 return atoi (ptr); | |
87 } | |
88 | |
89 int | |
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105959
diff
changeset
|
90 tgetflag (char *cap) |
7306 | 91 { |
92 register char *ptr = find_capability (term_entry, cap); | |
93 return ptr && ptr[-1] == ':'; | |
94 } | |
95 | |
96 /* Look up a string-valued capability CAP. | |
97 If AREA is non-null, it points to a pointer to a block in which | |
98 to store the string. That pointer is advanced over the space used. | |
99 If AREA is null, space is allocated with `malloc'. */ | |
100 | |
101 char * | |
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105959
diff
changeset
|
102 tgetstr (char *cap, char **area) |
7306 | 103 { |
104 register char *ptr = find_capability (term_entry, cap); | |
105 if (!ptr || (ptr[-1] != '=' && ptr[-1] != '~')) | |
106 return NULL; | |
107 return tgetst1 (ptr, area); | |
108 } | |
109 | |
23071
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
110 #ifdef IS_EBCDIC_HOST |
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
111 /* Table, indexed by a character in range 0200 to 0300 with 0200 subtracted, |
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
112 gives meaning of character following \, or a space if no special meaning. |
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
113 Sixteen characters per line within the string. */ |
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
114 |
105959
ba3ffbd9c422
* process.c (ifflag_def): Make flag_sym constant.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
115 static const char esctab[] |
23071
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
116 = " \057\026 \047\014 \ |
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
117 \025 \015 \ |
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
118 \005 \013 \ |
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
119 "; |
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
120 #else |
7306 | 121 /* Table, indexed by a character in range 0100 to 0140 with 0100 subtracted, |
122 gives meaning of character following \, or a space if no special meaning. | |
123 Eight characters per line within the string. */ | |
124 | |
105959
ba3ffbd9c422
* process.c (ifflag_def): Make flag_sym constant.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
125 static const char esctab[] |
7306 | 126 = " \007\010 \033\014 \ |
127 \012 \ | |
128 \015 \011 \013 \ | |
129 "; | |
23071
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
130 #endif |
7306 | 131 |
132 /* PTR points to a string value inside a termcap entry. | |
133 Copy that value, processing \ and ^ abbreviations, | |
134 into the block that *AREA points to, | |
135 or to newly allocated storage if AREA is NULL. | |
136 Return the address to which we copied the value, | |
137 or NULL if PTR is NULL. */ | |
138 | |
139 static char * | |
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105959
diff
changeset
|
140 tgetst1 (char *ptr, char **area) |
7306 | 141 { |
142 register char *p, *r; | |
143 register int c; | |
144 register int size; | |
145 char *ret; | |
146 register int c1; | |
147 | |
148 if (!ptr) | |
149 return NULL; | |
150 | |
151 /* `ret' gets address of where to store the string. */ | |
152 if (!area) | |
153 { | |
154 /* Compute size of block needed (may overestimate). */ | |
155 p = ptr; | |
156 while ((c = *p++) && c != ':' && c != '\n') | |
157 ; | |
158 ret = (char *) xmalloc (p - ptr + 1); | |
159 } | |
160 else | |
161 ret = *area; | |
162 | |
163 /* Copy the string value, stopping at null or colon. | |
164 Also process ^ and \ abbreviations. */ | |
165 p = ptr; | |
166 r = ret; | |
167 while ((c = *p++) && c != ':' && c != '\n') | |
168 { | |
169 if (c == '^') | |
10186
af0b61d21a8f
(tgetst1): Let ^? stand for DEL character.
Richard M. Stallman <rms@gnu.org>
parents:
7785
diff
changeset
|
170 { |
af0b61d21a8f
(tgetst1): Let ^? stand for DEL character.
Richard M. Stallman <rms@gnu.org>
parents:
7785
diff
changeset
|
171 c = *p++; |
af0b61d21a8f
(tgetst1): Let ^? stand for DEL character.
Richard M. Stallman <rms@gnu.org>
parents:
7785
diff
changeset
|
172 if (c == '?') |
af0b61d21a8f
(tgetst1): Let ^? stand for DEL character.
Richard M. Stallman <rms@gnu.org>
parents:
7785
diff
changeset
|
173 c = 0177; |
af0b61d21a8f
(tgetst1): Let ^? stand for DEL character.
Richard M. Stallman <rms@gnu.org>
parents:
7785
diff
changeset
|
174 else |
af0b61d21a8f
(tgetst1): Let ^? stand for DEL character.
Richard M. Stallman <rms@gnu.org>
parents:
7785
diff
changeset
|
175 c &= 037; |
af0b61d21a8f
(tgetst1): Let ^? stand for DEL character.
Richard M. Stallman <rms@gnu.org>
parents:
7785
diff
changeset
|
176 } |
7306 | 177 else if (c == '\\') |
178 { | |
179 c = *p++; | |
180 if (c >= '0' && c <= '7') | |
181 { | |
182 c -= '0'; | |
183 size = 0; | |
184 | |
185 while (++size < 3 && (c1 = *p) >= '0' && c1 <= '7') | |
186 { | |
187 c *= 8; | |
188 c += c1 - '0'; | |
189 p++; | |
190 } | |
191 } | |
23071
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
192 #ifdef IS_EBCDIC_HOST |
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
193 else if (c >= 0200 && c < 0360) |
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
194 { |
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
195 c1 = esctab[(c & ~0100) - 0200]; |
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
196 if (c1 != ' ') |
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
197 c = c1; |
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
198 } |
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
199 #else |
7306 | 200 else if (c >= 0100 && c < 0200) |
201 { | |
202 c1 = esctab[(c & ~040) - 0100]; | |
203 if (c1 != ' ') | |
204 c = c1; | |
205 } | |
23071
3790e185acc0
(tgetst1): Supprt EBCDIC systems.
Richard M. Stallman <rms@gnu.org>
parents:
22066
diff
changeset
|
206 #endif |
7306 | 207 } |
208 *r++ = c; | |
209 } | |
53306
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
210 |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
211 /* Sometimes entries have "%pN" which means use parameter N in the |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
212 next %-substitution. If all such N are continuous in the range |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
213 [1,9] we can remove each "%pN" because they are redundant, thus |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
214 reducing bandwidth requirements. True, Emacs is well beyond the |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
215 days of 150baud teletypes, but some of its users aren't much so. |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
216 |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
217 This pass could probably be integrated into the one above but |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
218 abbreviation expansion makes that effort a little more hairy than |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
219 its worth; this is cleaner. */ |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
220 { |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
221 register int last_p_param = 0; |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
222 int remove_p_params = 1; |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
223 struct { char *beg; int len; } cut[11]; |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
224 |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
225 for (cut[0].beg = p = ret; p < r - 3; p++) |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
226 { |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
227 if (!remove_p_params) |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
228 break; |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
229 if (*p == '%' && *(p + 1) == 'p') |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
230 { |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
231 if (*(p + 2) - '0' == 1 + last_p_param) |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
232 { |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
233 cut[last_p_param].len = p - cut[last_p_param].beg; |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
234 last_p_param++; |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
235 p += 3; |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
236 cut[last_p_param].beg = p; |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
237 } |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
238 else /* not continuous: bail */ |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
239 remove_p_params = 0; |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
240 if (last_p_param > 10) /* too many: bail */ |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
241 remove_p_params = 0; |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
242 } |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
243 } |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
244 if (remove_p_params && last_p_param) |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
245 { |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
246 register int i; |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
247 char *wp; |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
248 |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
249 cut[last_p_param].len = r - cut[last_p_param].beg; |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
250 for (i = 0, wp = ret; i <= last_p_param; wp += cut[i++].len) |
109165
750db9f3e6d8
Replace bcopy, bzero, bcmp by memcpy, memmove, memset, memcmp
Andreas Schwab <schwab@linux-m68k.org>
parents:
109126
diff
changeset
|
251 memcpy (wp, cut[i].beg, cut[i].len); |
53306
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
252 r = wp; |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
253 } |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
254 } |
9e78a65be39a
(tgetst1): Scan for "%pN"; if all
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
255 |
7306 | 256 *r = '\0'; |
257 /* Update *AREA. */ | |
258 if (area) | |
259 *area = r + 1; | |
260 return ret; | |
261 } | |
262 | |
263 /* Outputting a string with padding. */ | |
264 | |
43674
53deca397c95
[!emacs]: Replace ospeed for building standalone
Richard M. Stallman <rms@gnu.org>
parents:
37864
diff
changeset
|
265 #ifndef emacs |
53deca397c95
[!emacs]: Replace ospeed for building standalone
Richard M. Stallman <rms@gnu.org>
parents:
37864
diff
changeset
|
266 short ospeed; |
7306 | 267 /* If OSPEED is 0, we use this as the actual baud rate. */ |
268 int tputs_baud_rate; | |
43674
53deca397c95
[!emacs]: Replace ospeed for building standalone
Richard M. Stallman <rms@gnu.org>
parents:
37864
diff
changeset
|
269 #endif |
44890
01b93e5e53a7
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
Andrew Choi <akochoi@shaw.ca>
parents:
43713
diff
changeset
|
270 |
7306 | 271 char PC; |
272 | |
43674
53deca397c95
[!emacs]: Replace ospeed for building standalone
Richard M. Stallman <rms@gnu.org>
parents:
37864
diff
changeset
|
273 #ifndef emacs |
7306 | 274 /* Actual baud rate if positive; |
275 - baud rate / 100 if negative. */ | |
276 | |
105959
ba3ffbd9c422
* process.c (ifflag_def): Make flag_sym constant.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105669
diff
changeset
|
277 static const int speeds[] = |
7306 | 278 { |
279 0, 50, 75, 110, 135, 150, -2, -3, -6, -12, | |
10739
97096cdf6e55
(speeds): Make it ints. Add some higher speeds.
Richard M. Stallman <rms@gnu.org>
parents:
10186
diff
changeset
|
280 -18, -24, -48, -96, -192, -288, -384, -576, -1152 |
7306 | 281 }; |
282 | |
43674
53deca397c95
[!emacs]: Replace ospeed for building standalone
Richard M. Stallman <rms@gnu.org>
parents:
37864
diff
changeset
|
283 #endif /* not emacs */ |
37864 | 284 |
7306 | 285 void |
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105959
diff
changeset
|
286 tputs (register char *str, int nlines, register int (*outfun) (/* ??? */)) |
7306 | 287 { |
288 register int padcount = 0; | |
289 register int speed; | |
290 | |
43674
53deca397c95
[!emacs]: Replace ospeed for building standalone
Richard M. Stallman <rms@gnu.org>
parents:
37864
diff
changeset
|
291 #ifdef emacs |
43713
f92c4d87863a
Change defvar_int def and vars to use EMACS_INT instead of just int.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
43674
diff
changeset
|
292 extern EMACS_INT baud_rate; |
7306 | 293 speed = baud_rate; |
10739
97096cdf6e55
(speeds): Make it ints. Add some higher speeds.
Richard M. Stallman <rms@gnu.org>
parents:
10186
diff
changeset
|
294 /* For quite high speeds, convert to the smaller |
97096cdf6e55
(speeds): Make it ints. Add some higher speeds.
Richard M. Stallman <rms@gnu.org>
parents:
10186
diff
changeset
|
295 units to avoid overflow. */ |
97096cdf6e55
(speeds): Make it ints. Add some higher speeds.
Richard M. Stallman <rms@gnu.org>
parents:
10186
diff
changeset
|
296 if (speed > 10000) |
97096cdf6e55
(speeds): Make it ints. Add some higher speeds.
Richard M. Stallman <rms@gnu.org>
parents:
10186
diff
changeset
|
297 speed = - speed / 100; |
43674
53deca397c95
[!emacs]: Replace ospeed for building standalone
Richard M. Stallman <rms@gnu.org>
parents:
37864
diff
changeset
|
298 #else |
53deca397c95
[!emacs]: Replace ospeed for building standalone
Richard M. Stallman <rms@gnu.org>
parents:
37864
diff
changeset
|
299 if (ospeed == 0) |
53deca397c95
[!emacs]: Replace ospeed for building standalone
Richard M. Stallman <rms@gnu.org>
parents:
37864
diff
changeset
|
300 speed = tputs_baud_rate; |
53deca397c95
[!emacs]: Replace ospeed for building standalone
Richard M. Stallman <rms@gnu.org>
parents:
37864
diff
changeset
|
301 else |
53deca397c95
[!emacs]: Replace ospeed for building standalone
Richard M. Stallman <rms@gnu.org>
parents:
37864
diff
changeset
|
302 speed = speeds[ospeed]; |
53deca397c95
[!emacs]: Replace ospeed for building standalone
Richard M. Stallman <rms@gnu.org>
parents:
37864
diff
changeset
|
303 #endif |
7306 | 304 |
305 if (!str) | |
306 return; | |
307 | |
308 while (*str >= '0' && *str <= '9') | |
309 { | |
310 padcount += *str++ - '0'; | |
311 padcount *= 10; | |
312 } | |
313 if (*str == '.') | |
314 { | |
315 str++; | |
316 padcount += *str++ - '0'; | |
317 } | |
318 if (*str == '*') | |
319 { | |
320 str++; | |
321 padcount *= nlines; | |
322 } | |
323 while (*str) | |
324 (*outfun) (*str++); | |
325 | |
10739
97096cdf6e55
(speeds): Make it ints. Add some higher speeds.
Richard M. Stallman <rms@gnu.org>
parents:
10186
diff
changeset
|
326 /* PADCOUNT is now in units of tenths of msec. |
10753 | 327 SPEED is measured in characters per 10 seconds |
10739
97096cdf6e55
(speeds): Make it ints. Add some higher speeds.
Richard M. Stallman <rms@gnu.org>
parents:
10186
diff
changeset
|
328 or in characters per .1 seconds (if negative). |
97096cdf6e55
(speeds): Make it ints. Add some higher speeds.
Richard M. Stallman <rms@gnu.org>
parents:
10186
diff
changeset
|
329 We use the smaller units for larger speeds to avoid overflow. */ |
97096cdf6e55
(speeds): Make it ints. Add some higher speeds.
Richard M. Stallman <rms@gnu.org>
parents:
10186
diff
changeset
|
330 padcount *= speed; |
7306 | 331 padcount += 500; |
332 padcount /= 1000; | |
10739
97096cdf6e55
(speeds): Make it ints. Add some higher speeds.
Richard M. Stallman <rms@gnu.org>
parents:
10186
diff
changeset
|
333 if (speed < 0) |
7306 | 334 padcount = -padcount; |
335 else | |
336 { | |
337 padcount += 50; | |
338 padcount /= 100; | |
339 } | |
340 | |
341 while (padcount-- > 0) | |
342 (*outfun) (PC); | |
343 } | |
344 | |
345 /* Finding the termcap entry in the termcap data base. */ | |
346 | |
22066
a09f2b697d0a
Renamed "struct buffer" to "struct termcap_buffer" to
Richard M. Stallman <rms@gnu.org>
parents:
14414
diff
changeset
|
347 struct termcap_buffer |
7306 | 348 { |
349 char *beg; | |
350 int size; | |
351 char *ptr; | |
352 int ateof; | |
353 int full; | |
354 }; | |
355 | |
356 /* Forward declarations of static functions. */ | |
357 | |
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105959
diff
changeset
|
358 static int scan_file (char *str, int fd, register struct termcap_buffer *bufp); |
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105959
diff
changeset
|
359 static char *gobble_line (int fd, register struct termcap_buffer *bufp, char *append_end); |
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105959
diff
changeset
|
360 static int compare_contin (register char *str1, register char *str2); |
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105959
diff
changeset
|
361 static int name_match (char *line, char *name); |
7306 | 362 |
363 #ifdef MSDOS /* MW, May 1993 */ | |
364 static int | |
365 valid_filename_p (fn) | |
366 char *fn; | |
367 { | |
368 return *fn == '/' || fn[1] == ':'; | |
369 } | |
370 #else | |
371 #define valid_filename_p(fn) (*(fn) == '/') | |
372 #endif | |
373 | |
374 /* Find the termcap entry data for terminal type NAME | |
375 and store it in the block that BP points to. | |
376 Record its address for future use. | |
377 | |
378 If BP is null, space is dynamically allocated. | |
379 | |
380 Return -1 if there is some difficulty accessing the data base | |
381 of terminal types, | |
382 0 if the data base is accessible but the type NAME is not defined | |
383 in it, and some other value otherwise. */ | |
384 | |
385 int | |
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105959
diff
changeset
|
386 tgetent (char *bp, char *name) |
7306 | 387 { |
388 register char *termcap_name; | |
389 register int fd; | |
22066
a09f2b697d0a
Renamed "struct buffer" to "struct termcap_buffer" to
Richard M. Stallman <rms@gnu.org>
parents:
14414
diff
changeset
|
390 struct termcap_buffer buf; |
7306 | 391 register char *bp1; |
14132
85063feb159b
(tgetent): Find all the tc caps that there are.
Karl Heuer <kwzh@gnu.org>
parents:
13677
diff
changeset
|
392 char *tc_search_point; |
7306 | 393 char *term; |
394 int malloc_size = 0; | |
395 register int c; | |
33616 | 396 char *tcenv = NULL; /* TERMCAP value, if it contains :tc=. */ |
7306 | 397 char *indirect = NULL; /* Terminal type in :tc= in TERMCAP value. */ |
398 int filep; | |
399 | |
400 #ifdef INTERNAL_TERMINAL | |
401 /* For the internal terminal we don't want to read any termcap file, | |
402 so fake it. */ | |
403 if (!strcmp (name, "internal")) | |
404 { | |
405 term = INTERNAL_TERMINAL; | |
406 if (!bp) | |
407 { | |
408 malloc_size = 1 + strlen (term); | |
409 bp = (char *) xmalloc (malloc_size); | |
410 } | |
411 strcpy (bp, term); | |
412 goto ret; | |
413 } | |
414 #endif /* INTERNAL_TERMINAL */ | |
415 | |
12907
6cae53a06172
default to user-supplied buffer.
David J. MacKenzie <djm@gnu.org>
parents:
12679
diff
changeset
|
416 /* For compatibility with programs like `less' that want to |
6cae53a06172
default to user-supplied buffer.
David J. MacKenzie <djm@gnu.org>
parents:
12679
diff
changeset
|
417 put data in the termcap buffer themselves as a fallback. */ |
6cae53a06172
default to user-supplied buffer.
David J. MacKenzie <djm@gnu.org>
parents:
12679
diff
changeset
|
418 if (bp) |
6cae53a06172
default to user-supplied buffer.
David J. MacKenzie <djm@gnu.org>
parents:
12679
diff
changeset
|
419 term_entry = bp; |
6cae53a06172
default to user-supplied buffer.
David J. MacKenzie <djm@gnu.org>
parents:
12679
diff
changeset
|
420 |
7306 | 421 termcap_name = getenv ("TERMCAP"); |
422 if (termcap_name && *termcap_name == '\0') | |
423 termcap_name = NULL; | |
424 #if defined (MSDOS) && !defined (TEST) | |
425 if (termcap_name && (*termcap_name == '\\' | |
426 || *termcap_name == '/' | |
427 || termcap_name[1] == ':')) | |
428 dostounix_filename(termcap_name); | |
429 #endif | |
430 | |
431 filep = termcap_name && valid_filename_p (termcap_name); | |
432 | |
433 /* If termcap_name is non-null and starts with / (in the un*x case, that is), | |
434 it is a file name to use instead of /etc/termcap. | |
435 If it is non-null and does not start with /, | |
436 it is the entry itself, but only if | |
437 the name the caller requested matches the TERM variable. */ | |
438 | |
439 if (termcap_name && !filep && !strcmp (name, getenv ("TERM"))) | |
440 { | |
441 indirect = tgetst1 (find_capability (termcap_name, "tc"), (char **) 0); | |
442 if (!indirect) | |
443 { | |
444 if (!bp) | |
445 bp = termcap_name; | |
446 else | |
447 strcpy (bp, termcap_name); | |
448 goto ret; | |
449 } | |
450 else | |
451 { /* It has tc=. Need to read /etc/termcap. */ | |
452 tcenv = termcap_name; | |
453 termcap_name = NULL; | |
454 } | |
455 } | |
456 | |
457 if (!termcap_name || !filep) | |
12679
a14b26e55f25
TERMCAP_NAME -> TERMCAP_FILE.
David J. MacKenzie <djm@gnu.org>
parents:
12675
diff
changeset
|
458 termcap_name = TERMCAP_FILE; |
7306 | 459 |
460 /* Here we know we must search a file and termcap_name has its name. */ | |
461 | |
462 #ifdef MSDOS | |
7685 | 463 fd = open (termcap_name, O_RDONLY|O_TEXT, 0); |
7306 | 464 #else |
7685 | 465 fd = open (termcap_name, O_RDONLY, 0); |
7306 | 466 #endif |
467 if (fd < 0) | |
468 return -1; | |
469 | |
470 buf.size = BUFSIZE; | |
471 /* Add 1 to size to ensure room for terminating null. */ | |
472 buf.beg = (char *) xmalloc (buf.size + 1); | |
473 term = indirect ? indirect : name; | |
474 | |
475 if (!bp) | |
476 { | |
477 malloc_size = indirect ? strlen (tcenv) + 1 : buf.size; | |
478 bp = (char *) xmalloc (malloc_size); | |
479 } | |
14132
85063feb159b
(tgetent): Find all the tc caps that there are.
Karl Heuer <kwzh@gnu.org>
parents:
13677
diff
changeset
|
480 tc_search_point = bp1 = bp; |
7306 | 481 |
482 if (indirect) | |
483 /* Copy the data from the environment variable. */ | |
484 { | |
485 strcpy (bp, tcenv); | |
486 bp1 += strlen (tcenv); | |
487 } | |
488 | |
489 while (term) | |
490 { | |
491 /* Scan the file, reading it via buf, till find start of main entry. */ | |
492 if (scan_file (term, fd, &buf) == 0) | |
493 { | |
494 close (fd); | |
495 free (buf.beg); | |
496 if (malloc_size) | |
497 free (bp); | |
498 return 0; | |
499 } | |
500 | |
501 /* Free old `term' if appropriate. */ | |
502 if (term != name) | |
503 free (term); | |
504 | |
505 /* If BP is malloc'd by us, make sure it is big enough. */ | |
506 if (malloc_size) | |
507 { | |
34358
aa3b69684dbf
(tgetent): Change the way buffers are reallocated to
Gerd Moellmann <gerd@gnu.org>
parents:
33616
diff
changeset
|
508 int offset1 = bp1 - bp, offset2 = tc_search_point - bp; |
aa3b69684dbf
(tgetent): Change the way buffers are reallocated to
Gerd Moellmann <gerd@gnu.org>
parents:
33616
diff
changeset
|
509 malloc_size = offset1 + buf.size; |
aa3b69684dbf
(tgetent): Change the way buffers are reallocated to
Gerd Moellmann <gerd@gnu.org>
parents:
33616
diff
changeset
|
510 bp = termcap_name = (char *) xrealloc (bp, malloc_size); |
aa3b69684dbf
(tgetent): Change the way buffers are reallocated to
Gerd Moellmann <gerd@gnu.org>
parents:
33616
diff
changeset
|
511 bp1 = termcap_name + offset1; |
aa3b69684dbf
(tgetent): Change the way buffers are reallocated to
Gerd Moellmann <gerd@gnu.org>
parents:
33616
diff
changeset
|
512 tc_search_point = termcap_name + offset2; |
7306 | 513 } |
514 | |
515 /* Copy the line of the entry from buf into bp. */ | |
516 termcap_name = buf.ptr; | |
517 while ((*bp1++ = c = *termcap_name++) && c != '\n') | |
518 /* Drop out any \ newline sequence. */ | |
519 if (c == '\\' && *termcap_name == '\n') | |
520 { | |
521 bp1--; | |
522 termcap_name++; | |
523 } | |
524 *bp1 = '\0'; | |
525 | |
526 /* Does this entry refer to another terminal type's entry? | |
527 If something is found, copy it into heap and null-terminate it. */ | |
14132
85063feb159b
(tgetent): Find all the tc caps that there are.
Karl Heuer <kwzh@gnu.org>
parents:
13677
diff
changeset
|
528 tc_search_point = find_capability (tc_search_point, "tc"); |
85063feb159b
(tgetent): Find all the tc caps that there are.
Karl Heuer <kwzh@gnu.org>
parents:
13677
diff
changeset
|
529 term = tgetst1 (tc_search_point, (char **) 0); |
7306 | 530 } |
531 | |
532 close (fd); | |
533 free (buf.beg); | |
534 | |
535 if (malloc_size) | |
536 bp = (char *) xrealloc (bp, bp1 - bp + 1); | |
537 | |
538 ret: | |
539 term_entry = bp; | |
540 return 1; | |
541 } | |
542 | |
543 /* Given file open on FD and buffer BUFP, | |
544 scan the file from the beginning until a line is found | |
545 that starts the entry for terminal type STR. | |
546 Return 1 if successful, with that line in BUFP, | |
547 or 0 if no entry is found in the file. */ | |
548 | |
549 static int | |
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105959
diff
changeset
|
550 scan_file (char *str, int fd, register struct termcap_buffer *bufp) |
7306 | 551 { |
552 register char *end; | |
553 | |
554 bufp->ptr = bufp->beg; | |
555 bufp->full = 0; | |
556 bufp->ateof = 0; | |
557 *bufp->ptr = '\0'; | |
558 | |
559 lseek (fd, 0L, 0); | |
560 | |
561 while (!bufp->ateof) | |
562 { | |
563 /* Read a line into the buffer. */ | |
564 end = NULL; | |
565 do | |
566 { | |
567 /* if it is continued, append another line to it, | |
568 until a non-continued line ends. */ | |
569 end = gobble_line (fd, bufp, end); | |
570 } | |
571 while (!bufp->ateof && end[-2] == '\\'); | |
572 | |
573 if (*bufp->ptr != '#' | |
574 && name_match (bufp->ptr, str)) | |
575 return 1; | |
576 | |
577 /* Discard the line just processed. */ | |
578 bufp->ptr = end; | |
579 } | |
580 return 0; | |
581 } | |
582 | |
583 /* Return nonzero if NAME is one of the names specified | |
584 by termcap entry LINE. */ | |
585 | |
586 static int | |
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105959
diff
changeset
|
587 name_match (char *line, char *name) |
7306 | 588 { |
589 register char *tem; | |
590 | |
591 if (!compare_contin (line, name)) | |
592 return 1; | |
593 /* This line starts an entry. Is it the right one? */ | |
594 for (tem = line; *tem && *tem != '\n' && *tem != ':'; tem++) | |
595 if (*tem == '|' && !compare_contin (tem + 1, name)) | |
596 return 1; | |
597 | |
598 return 0; | |
599 } | |
600 | |
601 static int | |
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105959
diff
changeset
|
602 compare_contin (register char *str1, register char *str2) |
7306 | 603 { |
604 register int c1, c2; | |
605 while (1) | |
606 { | |
607 c1 = *str1++; | |
608 c2 = *str2++; | |
609 while (c1 == '\\' && *str1 == '\n') | |
610 { | |
611 str1++; | |
612 while ((c1 = *str1++) == ' ' || c1 == '\t'); | |
613 } | |
614 if (c2 == '\0') | |
615 { | |
616 /* End of type being looked up. */ | |
617 if (c1 == '|' || c1 == ':') | |
618 /* If end of name in data base, we win. */ | |
619 return 0; | |
620 else | |
621 return 1; | |
622 } | |
623 else if (c1 != c2) | |
624 return 1; | |
625 } | |
626 } | |
627 | |
628 /* Make sure that the buffer <- BUFP contains a full line | |
629 of the file open on FD, starting at the place BUFP->ptr | |
630 points to. Can read more of the file, discard stuff before | |
631 BUFP->ptr, or make the buffer bigger. | |
632 | |
633 Return the pointer to after the newline ending the line, | |
634 or to the end of the file, if there is no newline to end it. | |
635 | |
636 Can also merge on continuation lines. If APPEND_END is | |
637 non-null, it points past the newline of a line that is | |
638 continued; we add another line onto it and regard the whole | |
639 thing as one line. The caller decides when a line is continued. */ | |
640 | |
641 static char * | |
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105959
diff
changeset
|
642 gobble_line (int fd, register struct termcap_buffer *bufp, char *append_end) |
7306 | 643 { |
644 register char *end; | |
645 register int nread; | |
646 register char *buf = bufp->beg; | |
647 register char *tem; | |
648 | |
649 if (!append_end) | |
650 append_end = bufp->ptr; | |
651 | |
652 while (1) | |
653 { | |
654 end = append_end; | |
655 while (*end && *end != '\n') end++; | |
656 if (*end) | |
657 break; | |
658 if (bufp->ateof) | |
659 return buf + bufp->full; | |
660 if (bufp->ptr == buf) | |
661 { | |
662 if (bufp->full == bufp->size) | |
663 { | |
664 bufp->size *= 2; | |
665 /* Add 1 to size to ensure room for terminating null. */ | |
666 tem = (char *) xrealloc (buf, bufp->size + 1); | |
667 bufp->ptr = (bufp->ptr - buf) + tem; | |
668 append_end = (append_end - buf) + tem; | |
669 bufp->beg = buf = tem; | |
670 } | |
671 } | |
672 else | |
673 { | |
674 append_end -= bufp->ptr - buf; | |
109165
750db9f3e6d8
Replace bcopy, bzero, bcmp by memcpy, memmove, memset, memcmp
Andreas Schwab <schwab@linux-m68k.org>
parents:
109126
diff
changeset
|
675 memcpy (buf, bufp->ptr, bufp->full -= bufp->ptr - buf); |
7306 | 676 bufp->ptr = buf; |
677 } | |
678 if (!(nread = read (fd, buf + bufp->full, bufp->size - bufp->full))) | |
679 bufp->ateof = 1; | |
680 bufp->full += nread; | |
681 buf[bufp->full] = '\0'; | |
682 } | |
683 return end + 1; | |
684 } | |
685 | |
686 #ifdef TEST | |
687 | |
688 #ifdef NULL | |
689 #undef NULL | |
690 #endif | |
691 | |
692 #include <stdio.h> | |
693 | |
694 main (argc, argv) | |
695 int argc; | |
696 char **argv; | |
697 { | |
698 char *term; | |
699 char *buf; | |
700 | |
701 term = argv[1]; | |
702 printf ("TERM: %s\n", term); | |
703 | |
704 buf = (char *) tgetent (0, term); | |
705 if ((int) buf <= 0) | |
706 { | |
707 printf ("No entry.\n"); | |
708 return 0; | |
709 } | |
710 | |
711 printf ("Entry: %s\n", buf); | |
712 | |
713 tprint ("cm"); | |
714 tprint ("AL"); | |
715 | |
716 printf ("co: %d\n", tgetnum ("co")); | |
717 printf ("am: %d\n", tgetflag ("am")); | |
718 } | |
719 | |
720 tprint (cap) | |
721 char *cap; | |
722 { | |
723 char *x = tgetstr (cap, 0); | |
724 register char *y; | |
725 | |
726 printf ("%s: ", cap); | |
727 if (x) | |
728 { | |
729 for (y = x; *y; y++) | |
730 if (*y <= ' ' || *y == 0177) | |
731 printf ("\\%0o", *y); | |
732 else | |
733 putchar (*y); | |
734 free (x); | |
735 } | |
736 else | |
737 printf ("none"); | |
738 putchar ('\n'); | |
739 } | |
740 | |
741 #endif /* TEST */ | |
52401 | 742 |
743 /* arch-tag: c2e8d427-2271-4fac-95fe-411857238b80 | |
744 (do not change this comment) */ |