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 */
36 /* Do this after the include, in case string.h prototypes bcopy. */
37 #if (defined(HAVE_STRING_H) || defined(STDC_HEADERS)) && !defined(bcopy)
38 #define bcopy(s, d, n) memcpy ((d), (s), (n))
41 #endif /* not emacs */
44 #define NULL (char *) 0
51 write (2, "virtual memory exhausted\n", 25);
59 register char *tem
= malloc (size
);
71 register char *tem
= realloc (ptr
, size
);
77 #endif /* not emacs */
79 /* Assuming STRING is the value of a termcap string entry
80 containing `%' constructs to expand parameters,
81 merge in parameter values and store result in block OUTSTRING points to.
82 LEN is the length of OUTSTRING. If more space is needed,
83 a block is allocated with `malloc'.
85 The value returned is the address of the resulting string.
86 This may be OUTSTRING or may be the address of a block got with `malloc'.
87 In the latter case, the caller must free the block.
89 The fourth and following args to tparam serve as the parameter values. */
91 static char *tparam1 ();
95 tparam (string
, outstring
, len
, arg0
, arg1
, arg2
, arg3
)
99 int arg0
, arg1
, arg2
, arg3
;
107 return tparam1 (string
, outstring
, len
, NULL
, NULL
, arg
);
110 /* These are already defined in the System framework in Mac OS X and
111 cause prebinding to fail. */
116 static char tgoto_buf
[50];
119 tgoto (cm
, hpos
, vpos
)
128 return tparam1 (cm
, tgoto_buf
, 50, UP
, BC
, args
);
133 tparam1 (string
, outstring
, len
, up
, left
, argp
)
141 register char *p
= string
;
142 register char *op
= outstring
;
147 int *old_argp
= argp
;
151 outend
= outstring
+ len
;
155 /* If the buffer might be too short, make it bigger. */
156 if (op
+ 5 >= outend
)
159 int offset
= op
- outstring
;
164 new = (char *) xmalloc (outlen
);
165 bcopy (outstring
, new, offset
);
170 new = (char *) xrealloc (outstring
, outlen
);
174 outend
= new + outlen
;
186 case 'd': /* %d means output in decimal. */
191 case '3': /* %3 means output in decimal, 3 digits. */
194 *op
++ = tem
/ 1000 + '0';
197 *op
++ = tem
/ 100 + '0';
198 case '2': /* %2 means output in decimal, 2 digits. */
201 *op
++ = tem
/ 10 + '0';
203 *op
++ = tem
% 10 + '0';
208 /* For c-100: print quotient of value by 96, if nonzero,
215 case '+': /* %+x means add character code of char x. */
217 case '.': /* %. means output as character. */
220 /* If want to forbid output of 0 and \n and \t,
221 and this is one of them, increment it. */
222 while (tem
== 0 || tem
== '\n' || tem
== '\t')
225 if (argp
== old_argp
)
226 doup
++, outend
-= strlen (up
);
228 doleft
++, outend
-= strlen (left
);
231 *op
++ = tem
? tem
: 0200;
232 case 'f': /* %f means discard next arg. */
236 case 'b': /* %b means back up one arg (and re-use it). */
240 case 'r': /* %r means interchange following two args. */
246 case '>': /* %>xy means if arg is > char code of x, */
247 if (argp
[0] > *p
++) /* then add char code of y to the arg, */
248 argp
[0] += *p
; /* and in any case don't output. */
249 p
++; /* Leave the arg to be output later. */
252 case 'a': /* %a means arithmetic. */
253 /* Next character says what operation.
254 Add or subtract either a constant or some other arg. */
255 /* First following character is + to add or - to subtract
257 /* Next following char is 'p' and an arg spec
258 (0100 plus position of that arg relative to this one)
259 or 'c' and a constant stored in a character. */
262 tem
= argp
[tem
- 0100];
265 else if (p
[0] == '+')
267 else if (p
[0] == '*')
269 else if (p
[0] == '/')
277 case 'i': /* %i means add one to arg, */
278 argp
[0] ++; /* and leave it to be output later. */
279 argp
[1] ++; /* Increment the following arg, too! */
282 case '%': /* %% means output %; no arg. */
285 case 'n': /* %n means xor each of next two args with 140. */
290 case 'm': /* %m means xor each of next two args with 177. */
295 case 'B': /* %B means express arg as BCD char code. */
296 argp
[0] += 6 * (tem
/ 10);
299 case 'D': /* %D means weird Delta Data transformation. */
300 argp
[0] -= 2 * (tem
% 16);
308 /* Ordinary character in the argument string. */
328 args
[0] = atoi (argv
[2]);
329 args
[1] = atoi (argv
[3]);
330 args
[2] = atoi (argv
[4]);
331 tparam1 (argv
[1], buf
, "LEFT", "UP", args
);
332 printf ("%s\n", buf
);