1 /* Merge parameters into a termcap entry string.
2 Copyright (C) 1985, 87, 93, 95, 2000 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; see the file COPYING. If not, write to
16 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 Boston, MA 02111-1307, USA. */
19 /* Emacs config.h may rename various library functions such as malloc. */
25 #include "lisp.h" /* for xmalloc */
27 #if defined(HAVE_STRING_H) || defined(STDC_HEADERS)
28 #define bcopy(s, d, n) memcpy ((d), (s), (n))
39 #endif /* not emacs */
42 #define NULL (char *) 0
49 write (2, "virtual memory exhausted\n", 25);
57 register char *tem
= malloc (size
);
69 register char *tem
= realloc (ptr
, size
);
75 #endif /* not emacs */
77 /* Assuming STRING is the value of a termcap string entry
78 containing `%' constructs to expand parameters,
79 merge in parameter values and store result in block OUTSTRING points to.
80 LEN is the length of OUTSTRING. If more space is needed,
81 a block is allocated with `malloc'.
83 The value returned is the address of the resulting string.
84 This may be OUTSTRING or may be the address of a block got with `malloc'.
85 In the latter case, the caller must free the block.
87 The fourth and following args to tparam serve as the parameter values. */
89 static char *tparam1 ();
93 tparam (string
, outstring
, len
, arg0
, arg1
, arg2
, arg3
)
97 int arg0
, arg1
, arg2
, arg3
;
105 return tparam1 (string
, outstring
, len
, NULL
, NULL
, arg
);
111 static char tgoto_buf
[50];
114 tgoto (cm
, hpos
, vpos
)
123 return tparam1 (cm
, tgoto_buf
, 50, UP
, BC
, args
);
127 tparam1 (string
, outstring
, len
, up
, left
, argp
)
135 register char *p
= string
;
136 register char *op
= outstring
;
141 int *old_argp
= argp
;
145 outend
= outstring
+ len
;
149 /* If the buffer might be too short, make it bigger. */
150 if (op
+ 5 >= outend
)
153 int offset
= op
- outstring
;
158 new = (char *) xmalloc (outlen
);
159 bcopy (outstring
, new, offset
);
164 new = (char *) xrealloc (outstring
, outlen
);
168 outend
= new + outlen
;
180 case 'd': /* %d means output in decimal. */
185 case '3': /* %3 means output in decimal, 3 digits. */
188 *op
++ = tem
/ 1000 + '0';
191 *op
++ = tem
/ 100 + '0';
192 case '2': /* %2 means output in decimal, 2 digits. */
195 *op
++ = tem
/ 10 + '0';
197 *op
++ = tem
% 10 + '0';
202 /* For c-100: print quotient of value by 96, if nonzero,
209 case '+': /* %+x means add character code of char x. */
211 case '.': /* %. means output as character. */
214 /* If want to forbid output of 0 and \n and \t,
215 and this is one of them, increment it. */
216 while (tem
== 0 || tem
== '\n' || tem
== '\t')
219 if (argp
== old_argp
)
220 doup
++, outend
-= strlen (up
);
222 doleft
++, outend
-= strlen (left
);
225 *op
++ = tem
? tem
: 0200;
226 case 'f': /* %f means discard next arg. */
230 case 'b': /* %b means back up one arg (and re-use it). */
234 case 'r': /* %r means interchange following two args. */
240 case '>': /* %>xy means if arg is > char code of x, */
241 if (argp
[0] > *p
++) /* then add char code of y to the arg, */
242 argp
[0] += *p
; /* and in any case don't output. */
243 p
++; /* Leave the arg to be output later. */
246 case 'a': /* %a means arithmetic. */
247 /* Next character says what operation.
248 Add or subtract either a constant or some other arg. */
249 /* First following character is + to add or - to subtract
251 /* Next following char is 'p' and an arg spec
252 (0100 plus position of that arg relative to this one)
253 or 'c' and a constant stored in a character. */
256 tem
= argp
[tem
- 0100];
259 else if (p
[0] == '+')
261 else if (p
[0] == '*')
263 else if (p
[0] == '/')
271 case 'i': /* %i means add one to arg, */
272 argp
[0] ++; /* and leave it to be output later. */
273 argp
[1] ++; /* Increment the following arg, too! */
276 case '%': /* %% means output %; no arg. */
279 case 'n': /* %n means xor each of next two args with 140. */
284 case 'm': /* %m means xor each of next two args with 177. */
289 case 'B': /* %B means express arg as BCD char code. */
290 argp
[0] += 6 * (tem
/ 10);
293 case 'D': /* %D means weird Delta Data transformation. */
294 argp
[0] -= 2 * (tem
% 16);
302 /* Ordinary character in the argument string. */
322 args
[0] = atoi (argv
[2]);
323 args
[1] = atoi (argv
[3]);
324 args
[2] = atoi (argv
[4]);
325 tparam1 (argv
[1], buf
, "LEFT", "UP", args
);
326 printf ("%s\n", buf
);