]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/tinfo/lib_tparm.c
ncurses 6.1 - patch 20181117
[ncurses.git] / ncurses / tinfo / lib_tparm.c
1 /****************************************************************************
2  * Copyright (c) 1998-2017,2018 Free Software Foundation, Inc.              *
3  *                                                                          *
4  * Permission is hereby granted, free of charge, to any person obtaining a  *
5  * copy of this software and associated documentation files (the            *
6  * "Software"), to deal in the Software without restriction, including      *
7  * without limitation the rights to use, copy, modify, merge, publish,      *
8  * distribute, distribute with modifications, sublicense, and/or sell       *
9  * copies of the Software, and to permit persons to whom the Software is    *
10  * furnished to do so, subject to the following conditions:                 *
11  *                                                                          *
12  * The above copyright notice and this permission notice shall be included  *
13  * in all copies or substantial portions of the Software.                   *
14  *                                                                          *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
16  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
17  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
18  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
19  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
20  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
21  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
22  *                                                                          *
23  * Except as contained in this notice, the name(s) of the above copyright   *
24  * holders shall not be used in advertising or otherwise to promote the     *
25  * sale, use or other dealings in this Software without prior written       *
26  * authorization.                                                           *
27  ****************************************************************************/
28
29 /****************************************************************************
30  *  Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995               *
31  *     and: Eric S. Raymond <esr@snark.thyrsus.com>                         *
32  *     and: Thomas E. Dickey, 1996 on                                       *
33  ****************************************************************************/
34
35 /*
36  *      tparm.c
37  *
38  */
39
40 #include <curses.priv.h>
41
42 #include <ctype.h>
43 #include <tic.h>
44
45 MODULE_ID("$Id: lib_tparm.c,v 1.106 2018/07/01 15:23:27 tom Exp $")
46
47 /*
48  *      char *
49  *      tparm(string, ...)
50  *
51  *      Substitute the given parameters into the given string by the following
52  *      rules (taken from terminfo(5)):
53  *
54  *           Cursor addressing and other strings  requiring  parame-
55  *      ters in the terminal are described by a parameterized string
56  *      capability, with escapes like %x in  it.   For  example,  to
57  *      address  the  cursor, the cup capability is given, using two
58  *      parameters: the row and column to  address  to.   (Rows  and
59  *      columns  are  numbered  from  zero and refer to the physical
60  *      screen visible to the user, not to any  unseen  memory.)  If
61  *      the terminal has memory relative cursor addressing, that can
62  *      be indicated by
63  *
64  *           The parameter mechanism uses  a  stack  and  special  %
65  *      codes  to manipulate it.  Typically a sequence will push one
66  *      of the parameters onto the stack and then print it  in  some
67  *      format.  Often more complex operations are necessary.
68  *
69  *           The % encodings have the following meanings:
70  *
71  *           %%        outputs `%'
72  *           %c        print pop() like %c in printf()
73  *           %s        print pop() like %s in printf()
74  *           %[[:]flags][width[.precision]][doxXs]
75  *                     as in printf, flags are [-+#] and space
76  *                     The ':' is used to avoid making %+ or %-
77  *                     patterns (see below).
78  *
79  *           %p[1-9]   push ith parm
80  *           %P[a-z]   set dynamic variable [a-z] to pop()
81  *           %g[a-z]   get dynamic variable [a-z] and push it
82  *           %P[A-Z]   set static variable [A-Z] to pop()
83  *           %g[A-Z]   get static variable [A-Z] and push it
84  *           %l        push strlen(pop)
85  *           %'c'      push char constant c
86  *           %{nn}     push integer constant nn
87  *
88  *           %+ %- %* %/ %m
89  *                     arithmetic (%m is mod): push(pop() op pop())
90  *           %& %| %^  bit operations: push(pop() op pop())
91  *           %= %> %<  logical operations: push(pop() op pop())
92  *           %A %O     logical and & or operations for conditionals
93  *           %! %~     unary operations push(op pop())
94  *           %i        add 1 to first two parms (for ANSI terminals)
95  *
96  *           %? expr %t thenpart %e elsepart %;
97  *                     if-then-else, %e elsepart is optional.
98  *                     else-if's are possible ala Algol 68:
99  *                     %? c1 %t b1 %e c2 %t b2 %e c3 %t b3 %e c4 %t b4 %e b5 %;
100  *
101  *      For those of the above operators which are binary and not commutative,
102  *      the stack works in the usual way, with
103  *                      %gx %gy %m
104  *      resulting in x mod y, not the reverse.
105  */
106
107 NCURSES_EXPORT_VAR(int) _nc_tparm_err = 0;
108
109 #define TPS(var) _nc_prescreen.tparm_state.var
110 #define popcount _nc_popcount   /* workaround for NetBSD 6.0 defect */
111
112 #if NO_LEAKS
113 NCURSES_EXPORT(void)
114 _nc_free_tparm(void)
115 {
116     if (TPS(out_buff) != 0) {
117         FreeAndNull(TPS(out_buff));
118         TPS(out_size) = 0;
119         TPS(out_used) = 0;
120         FreeAndNull(TPS(fmt_buff));
121         TPS(fmt_size) = 0;
122     }
123 }
124 #endif
125
126 static NCURSES_INLINE void
127 get_space(size_t need)
128 {
129     need += TPS(out_used);
130     if (need > TPS(out_size)) {
131         TPS(out_size) = need * 2;
132         TYPE_REALLOC(char, TPS(out_size), TPS(out_buff));
133     }
134 }
135
136 static NCURSES_INLINE void
137 save_text(const char *fmt, const char *s, int len)
138 {
139     size_t s_len = strlen(s);
140     if (len > (int) s_len)
141         s_len = (size_t) len;
142
143     get_space(s_len + 1);
144
145     _nc_SPRINTF(TPS(out_buff) + TPS(out_used),
146                 _nc_SLIMIT(TPS(out_size) - TPS(out_used))
147                 fmt, s);
148     TPS(out_used) += strlen(TPS(out_buff) + TPS(out_used));
149 }
150
151 static NCURSES_INLINE void
152 save_number(const char *fmt, int number, int len)
153 {
154     if (len < 30)
155         len = 30;               /* actually log10(MAX_INT)+1 */
156
157     get_space((size_t) len + 1);
158
159     _nc_SPRINTF(TPS(out_buff) + TPS(out_used),
160                 _nc_SLIMIT(TPS(out_size) - TPS(out_used))
161                 fmt, number);
162     TPS(out_used) += strlen(TPS(out_buff) + TPS(out_used));
163 }
164
165 static NCURSES_INLINE void
166 save_char(int c)
167 {
168     if (c == 0)
169         c = 0200;
170     get_space((size_t) 1);
171     TPS(out_buff)[TPS(out_used)++] = (char) c;
172 }
173
174 static NCURSES_INLINE void
175 npush(int x)
176 {
177     if (TPS(stack_ptr) < STACKSIZE) {
178         TPS(stack)[TPS(stack_ptr)].num_type = TRUE;
179         TPS(stack)[TPS(stack_ptr)].data.num = x;
180         TPS(stack_ptr)++;
181     } else {
182         DEBUG(2, ("npush: stack overflow: %s", _nc_visbuf(TPS(tparam_base))));
183         _nc_tparm_err++;
184     }
185 }
186
187 static NCURSES_INLINE int
188 npop(void)
189 {
190     int result = 0;
191     if (TPS(stack_ptr) > 0) {
192         TPS(stack_ptr)--;
193         if (TPS(stack)[TPS(stack_ptr)].num_type)
194             result = TPS(stack)[TPS(stack_ptr)].data.num;
195     } else {
196         DEBUG(2, ("npop: stack underflow: %s", _nc_visbuf(TPS(tparam_base))));
197         _nc_tparm_err++;
198     }
199     return result;
200 }
201
202 static NCURSES_INLINE void
203 spush(char *x)
204 {
205     if (TPS(stack_ptr) < STACKSIZE) {
206         TPS(stack)[TPS(stack_ptr)].num_type = FALSE;
207         TPS(stack)[TPS(stack_ptr)].data.str = x;
208         TPS(stack_ptr)++;
209     } else {
210         DEBUG(2, ("spush: stack overflow: %s", _nc_visbuf(TPS(tparam_base))));
211         _nc_tparm_err++;
212     }
213 }
214
215 static NCURSES_INLINE char *
216 spop(void)
217 {
218     static char dummy[] = "";   /* avoid const-cast */
219     char *result = dummy;
220     if (TPS(stack_ptr) > 0) {
221         TPS(stack_ptr)--;
222         if (!TPS(stack)[TPS(stack_ptr)].num_type
223             && TPS(stack)[TPS(stack_ptr)].data.str != 0)
224             result = TPS(stack)[TPS(stack_ptr)].data.str;
225     } else {
226         DEBUG(2, ("spop: stack underflow: %s", _nc_visbuf(TPS(tparam_base))));
227         _nc_tparm_err++;
228     }
229     return result;
230 }
231
232 static NCURSES_INLINE const char *
233 parse_format(const char *s, char *format, int *len)
234 {
235     *len = 0;
236     if (format != 0) {
237         bool done = FALSE;
238         bool allowminus = FALSE;
239         bool dot = FALSE;
240         bool err = FALSE;
241         char *fmt = format;
242         int my_width = 0;
243         int my_prec = 0;
244         int value = 0;
245
246         *len = 0;
247         *format++ = '%';
248         while (*s != '\0' && !done) {
249             switch (*s) {
250             case 'c':           /* FALLTHRU */
251             case 'd':           /* FALLTHRU */
252             case 'o':           /* FALLTHRU */
253             case 'x':           /* FALLTHRU */
254             case 'X':           /* FALLTHRU */
255             case 's':
256 #ifdef EXP_XTERM_1005
257             case 'u':
258 #endif
259                 *format++ = *s;
260                 done = TRUE;
261                 break;
262             case '.':
263                 *format++ = *s++;
264                 if (dot) {
265                     err = TRUE;
266                 } else {        /* value before '.' is the width */
267                     dot = TRUE;
268                     my_width = value;
269                 }
270                 value = 0;
271                 break;
272             case '#':
273                 *format++ = *s++;
274                 break;
275             case ' ':
276                 *format++ = *s++;
277                 break;
278             case ':':
279                 s++;
280                 allowminus = TRUE;
281                 break;
282             case '-':
283                 if (allowminus) {
284                     *format++ = *s++;
285                 } else {
286                     done = TRUE;
287                 }
288                 break;
289             default:
290                 if (isdigit(UChar(*s))) {
291                     value = (value * 10) + (*s - '0');
292                     if (value > 10000)
293                         err = TRUE;
294                     *format++ = *s++;
295                 } else {
296                     done = TRUE;
297                 }
298             }
299         }
300
301         /*
302          * If we found an error, ignore (and remove) the flags.
303          */
304         if (err) {
305             my_width = my_prec = value = 0;
306             format = fmt;
307             *format++ = '%';
308             *format++ = *s;
309         }
310
311         /*
312          * Any value after '.' is the precision.  If we did not see '.', then
313          * the value is the width.
314          */
315         if (dot)
316             my_prec = value;
317         else
318             my_width = value;
319
320         *format = '\0';
321         /* return maximum string length in print */
322         *len = (my_width > my_prec) ? my_width : my_prec;
323     }
324     return s;
325 }
326
327 #define isUPPER(c) ((c) >= 'A' && (c) <= 'Z')
328 #define isLOWER(c) ((c) >= 'a' && (c) <= 'z')
329 #define tc_BUMP()  if (level < 0 && number < 2) number++
330
331 /*
332  * Analyze the string to see how many parameters we need from the varargs list,
333  * and what their types are.  We will only accept string parameters if they
334  * appear as a %l or %s format following an explicit parameter reference (e.g.,
335  * %p2%s).  All other parameters are numbers.
336  *
337  * 'number' counts coarsely the number of pop's we see in the string, and
338  * 'popcount' shows the highest parameter number in the string.  We would like
339  * to simply use the latter count, but if we are reading termcap strings, there
340  * may be cases that we cannot see the explicit parameter numbers.
341  */
342 NCURSES_EXPORT(int)
343 _nc_tparm_analyze(const char *string, char *p_is_s[NUM_PARM], int *popcount)
344 {
345     size_t len2;
346     int i;
347     int lastpop = -1;
348     int len;
349     int number = 0;
350     int level = -1;
351     const char *cp = string;
352     static char dummy[] = "";
353
354     if (cp == 0)
355         return 0;
356
357     if ((len2 = strlen(cp)) + 2 > TPS(fmt_size)) {
358         TPS(fmt_size) += len2 + 2;
359         TPS(fmt_buff) = typeRealloc(char, TPS(fmt_size), TPS(fmt_buff));
360         if (TPS(fmt_buff) == 0)
361             return 0;
362     }
363
364     memset(p_is_s, 0, sizeof(p_is_s[0]) * NUM_PARM);
365     *popcount = 0;
366
367     while ((cp - string) < (int) len2) {
368         if (*cp == '%') {
369             cp++;
370             cp = parse_format(cp, TPS(fmt_buff), &len);
371             switch (*cp) {
372             default:
373                 break;
374
375             case 'd':           /* FALLTHRU */
376             case 'o':           /* FALLTHRU */
377             case 'x':           /* FALLTHRU */
378             case 'X':           /* FALLTHRU */
379             case 'c':           /* FALLTHRU */
380 #ifdef EXP_XTERM_1005
381             case 'u':
382 #endif
383                 if (lastpop <= 0) {
384                     tc_BUMP();
385                 }
386                 level -= 1;
387                 lastpop = -1;
388                 break;
389
390             case 'l':
391             case 's':
392                 if (lastpop > 0) {
393                     level -= 1;
394                     p_is_s[lastpop - 1] = dummy;
395                 }
396                 tc_BUMP();
397                 break;
398
399             case 'p':
400                 cp++;
401                 i = (UChar(*cp) - '0');
402                 if (i >= 0 && i <= NUM_PARM) {
403                     ++level;
404                     lastpop = i;
405                     if (lastpop > *popcount)
406                         *popcount = lastpop;
407                 }
408                 break;
409
410             case 'P':
411                 ++cp;
412                 break;
413
414             case 'g':
415                 ++level;
416                 cp++;
417                 break;
418
419             case S_QUOTE:
420                 ++level;
421                 cp += 2;
422                 lastpop = -1;
423                 break;
424
425             case L_BRACE:
426                 ++level;
427                 cp++;
428                 while (isdigit(UChar(*cp))) {
429                     cp++;
430                 }
431                 break;
432
433             case '+':
434             case '-':
435             case '*':
436             case '/':
437             case 'm':
438             case 'A':
439             case 'O':
440             case '&':
441             case '|':
442             case '^':
443             case '=':
444             case '<':
445             case '>':
446                 tc_BUMP();
447                 level -= 1;     /* pop 2, operate, push 1 */
448                 lastpop = -1;
449                 break;
450
451             case '!':
452             case '~':
453                 tc_BUMP();
454                 lastpop = -1;
455                 break;
456
457             case 'i':
458                 /* will add 1 to first (usually two) parameters */
459                 break;
460             }
461         }
462         if (*cp != '\0')
463             cp++;
464     }
465
466     if (number > NUM_PARM)
467         number = NUM_PARM;
468     return number;
469 }
470
471 static NCURSES_INLINE char *
472 tparam_internal(int use_TPARM_ARG, const char *string, va_list ap)
473 {
474     char *p_is_s[NUM_PARM];
475     TPARM_ARG param[NUM_PARM];
476     int popcount = 0;
477     int number;
478     int num_args;
479     int len;
480     int level;
481     int x, y;
482     int i;
483     const char *cp = string;
484     size_t len2;
485     bool termcap_hack;
486     bool incremented_two;
487
488     if (cp == NULL) {
489         TR(TRACE_CALLS, ("%s: format is null", TPS(tname)));
490         return NULL;
491     }
492
493     TPS(out_used) = 0;
494     len2 = strlen(cp);
495
496     /*
497      * Find the highest parameter-number referred to in the format string.
498      * Use this value to limit the number of arguments copied from the
499      * variable-length argument list.
500      */
501     number = _nc_tparm_analyze(cp, p_is_s, &popcount);
502     if (TPS(fmt_buff) == 0) {
503         TR(TRACE_CALLS, ("%s: error in analysis", TPS(tname)));
504         return NULL;
505     }
506
507     incremented_two = FALSE;
508
509     if (number > NUM_PARM)
510         number = NUM_PARM;
511     if (popcount > NUM_PARM)
512         popcount = NUM_PARM;
513     num_args = max(popcount, number);
514
515     for (i = 0; i < num_args; i++) {
516         /*
517          * A few caps (such as plab_norm) have string-valued parms.
518          * We'll have to assume that the caller knows the difference, since
519          * a char* and an int may not be the same size on the stack.  The
520          * normal prototype for this uses 9 long's, which is consistent with
521          * our va_arg() usage.
522          */
523         if (p_is_s[i] != 0) {
524             p_is_s[i] = va_arg(ap, char *);
525             param[i] = 0;
526         } else if (use_TPARM_ARG) {
527             param[i] = va_arg(ap, TPARM_ARG);
528         } else {
529             param[i] = (TPARM_ARG) va_arg(ap, int);
530         }
531     }
532
533     /*
534      * This is a termcap compatibility hack.  If there are no explicit pop
535      * operations in the string, load the stack in such a way that
536      * successive pops will grab successive parameters.  That will make
537      * the expansion of (for example) \E[%d;%dH work correctly in termcap
538      * style, which means tparam() will expand termcap strings OK.
539      */
540     TPS(stack_ptr) = 0;
541     termcap_hack = FALSE;
542     if (popcount == 0) {
543         termcap_hack = TRUE;
544         for (i = number - 1; i >= 0; i--) {
545             if (p_is_s[i])
546                 spush(p_is_s[i]);
547             else
548                 npush((int) param[i]);
549         }
550     }
551 #ifdef TRACE
552     if (USE_TRACEF(TRACE_CALLS)) {
553         for (i = 0; i < num_args; i++) {
554             if (p_is_s[i] != 0) {
555                 save_text(", %s", _nc_visbuf(p_is_s[i]), 0);
556             } else if ((long) param[i] > MAX_OF_TYPE(NCURSES_INT2) ||
557                        (long) param[i] < 0) {
558                 _tracef("BUG: problem with tparm parameter #%d of %d",
559                         i + 1, num_args);
560                 break;
561             } else {
562                 save_number(", %d", (int) param[i], 0);
563             }
564         }
565         _tracef(T_CALLED("%s(%s%s)"), TPS(tname), _nc_visbuf(cp), TPS(out_buff));
566         TPS(out_used) = 0;
567         _nc_unlock_global(tracef);
568     }
569 #endif /* TRACE */
570
571     while ((cp - string) < (int) len2) {
572         if (*cp != '%') {
573             save_char(UChar(*cp));
574         } else {
575             TPS(tparam_base) = cp++;
576             cp = parse_format(cp, TPS(fmt_buff), &len);
577             switch (*cp) {
578             default:
579                 break;
580             case '%':
581                 save_char('%');
582                 break;
583
584             case 'd':           /* FALLTHRU */
585             case 'o':           /* FALLTHRU */
586             case 'x':           /* FALLTHRU */
587             case 'X':           /* FALLTHRU */
588                 save_number(TPS(fmt_buff), npop(), len);
589                 break;
590
591             case 'c':           /* FALLTHRU */
592                 save_char(npop());
593                 break;
594
595 #ifdef EXP_XTERM_1005
596             case 'u':
597                 {
598                     unsigned char target[10];
599                     unsigned source = (unsigned) npop();
600                     int rc = _nc_conv_to_utf8(target, source, (unsigned)
601                                               sizeof(target));
602                     int n;
603                     for (n = 0; n < rc; ++n) {
604                         save_char(target[n]);
605                     }
606                 }
607                 break;
608 #endif
609             case 'l':
610                 npush((int) strlen(spop()));
611                 break;
612
613             case 's':
614                 save_text(TPS(fmt_buff), spop(), len);
615                 break;
616
617             case 'p':
618                 cp++;
619                 i = (UChar(*cp) - '1');
620                 if (i >= 0 && i < NUM_PARM) {
621                     if (p_is_s[i]) {
622                         spush(p_is_s[i]);
623                     } else {
624                         npush((int) param[i]);
625                     }
626                 }
627                 break;
628
629             case 'P':
630                 cp++;
631                 if (isUPPER(*cp)) {
632                     i = (UChar(*cp) - 'A');
633                     TPS(static_vars)[i] = npop();
634                 } else if (isLOWER(*cp)) {
635                     i = (UChar(*cp) - 'a');
636                     TPS(dynamic_var)[i] = npop();
637                 }
638                 break;
639
640             case 'g':
641                 cp++;
642                 if (isUPPER(*cp)) {
643                     i = (UChar(*cp) - 'A');
644                     npush(TPS(static_vars)[i]);
645                 } else if (isLOWER(*cp)) {
646                     i = (UChar(*cp) - 'a');
647                     npush(TPS(dynamic_var)[i]);
648                 }
649                 break;
650
651             case S_QUOTE:
652                 cp++;
653                 npush(UChar(*cp));
654                 cp++;
655                 break;
656
657             case L_BRACE:
658                 number = 0;
659                 cp++;
660                 while (isdigit(UChar(*cp))) {
661                     number = (number * 10) + (UChar(*cp) - '0');
662                     cp++;
663                 }
664                 npush(number);
665                 break;
666
667             case '+':
668                 npush(npop() + npop());
669                 break;
670
671             case '-':
672                 y = npop();
673                 x = npop();
674                 npush(x - y);
675                 break;
676
677             case '*':
678                 npush(npop() * npop());
679                 break;
680
681             case '/':
682                 y = npop();
683                 x = npop();
684                 npush(y ? (x / y) : 0);
685                 break;
686
687             case 'm':
688                 y = npop();
689                 x = npop();
690                 npush(y ? (x % y) : 0);
691                 break;
692
693             case 'A':
694                 y = npop();
695                 x = npop();
696                 npush(y && x);
697                 break;
698
699             case 'O':
700                 y = npop();
701                 x = npop();
702                 npush(y || x);
703                 break;
704
705             case '&':
706                 npush(npop() & npop());
707                 break;
708
709             case '|':
710                 npush(npop() | npop());
711                 break;
712
713             case '^':
714                 npush(npop() ^ npop());
715                 break;
716
717             case '=':
718                 y = npop();
719                 x = npop();
720                 npush(x == y);
721                 break;
722
723             case '<':
724                 y = npop();
725                 x = npop();
726                 npush(x < y);
727                 break;
728
729             case '>':
730                 y = npop();
731                 x = npop();
732                 npush(x > y);
733                 break;
734
735             case '!':
736                 npush(!npop());
737                 break;
738
739             case '~':
740                 npush(~npop());
741                 break;
742
743             case 'i':
744                 /*
745                  * Increment the first two parameters -- if they are numbers
746                  * rather than strings.  As a side effect, assign into the
747                  * stack; if this is termcap, then the stack was populated
748                  * using the termcap hack above rather than via the terminfo
749                  * 'p' case.
750                  */
751                 if (!incremented_two) {
752                     incremented_two = TRUE;
753                     if (p_is_s[0] == 0) {
754                         param[0]++;
755                         if (termcap_hack)
756                             TPS(stack)[0].data.num = (int) param[0];
757                     }
758                     if (p_is_s[1] == 0) {
759                         param[1]++;
760                         if (termcap_hack)
761                             TPS(stack)[1].data.num = (int) param[1];
762                     }
763                 }
764                 break;
765
766             case '?':
767                 break;
768
769             case 't':
770                 x = npop();
771                 if (!x) {
772                     /* scan forward for %e or %; at level zero */
773                     cp++;
774                     level = 0;
775                     while (*cp) {
776                         if (*cp == '%') {
777                             cp++;
778                             if (*cp == '?')
779                                 level++;
780                             else if (*cp == ';') {
781                                 if (level > 0)
782                                     level--;
783                                 else
784                                     break;
785                             } else if (*cp == 'e' && level == 0)
786                                 break;
787                         }
788
789                         if (*cp)
790                             cp++;
791                     }
792                 }
793                 break;
794
795             case 'e':
796                 /* scan forward for a %; at level zero */
797                 cp++;
798                 level = 0;
799                 while (*cp) {
800                     if (*cp == '%') {
801                         cp++;
802                         if (*cp == '?')
803                             level++;
804                         else if (*cp == ';') {
805                             if (level > 0)
806                                 level--;
807                             else
808                                 break;
809                         }
810                     }
811
812                     if (*cp)
813                         cp++;
814                 }
815                 break;
816
817             case ';':
818                 break;
819
820             }                   /* endswitch (*cp) */
821         }                       /* endelse (*cp == '%') */
822
823         if (*cp == '\0')
824             break;
825
826         cp++;
827     }                           /* endwhile (*cp) */
828
829     get_space((size_t) 1);
830     TPS(out_buff)[TPS(out_used)] = '\0';
831
832     T((T_RETURN("%s"), _nc_visbuf(TPS(out_buff))));
833     return (TPS(out_buff));
834 }
835
836 #if NCURSES_TPARM_VARARGS
837 #define tparm_varargs tparm
838 #else
839 #define tparm_proto tparm
840 #endif
841
842 NCURSES_EXPORT(char *)
843 tparm_varargs(const char *string,...)
844 {
845     va_list ap;
846     char *result;
847
848     _nc_tparm_err = 0;
849     va_start(ap, string);
850 #ifdef TRACE
851     TPS(tname) = "tparm";
852 #endif /* TRACE */
853     result = tparam_internal(TRUE, string, ap);
854     va_end(ap);
855     return result;
856 }
857
858 #if !NCURSES_TPARM_VARARGS
859 NCURSES_EXPORT(char *)
860 tparm_proto(const char *string,
861             TPARM_ARG a1,
862             TPARM_ARG a2,
863             TPARM_ARG a3,
864             TPARM_ARG a4,
865             TPARM_ARG a5,
866             TPARM_ARG a6,
867             TPARM_ARG a7,
868             TPARM_ARG a8,
869             TPARM_ARG a9)
870 {
871     return tparm_varargs(string, a1, a2, a3, a4, a5, a6, a7, a8, a9);
872 }
873 #endif /* NCURSES_TPARM_VARARGS */
874
875 NCURSES_EXPORT(char *)
876 tiparm(const char *string,...)
877 {
878     va_list ap;
879     char *result;
880
881     _nc_tparm_err = 0;
882     va_start(ap, string);
883 #ifdef TRACE
884     TPS(tname) = "tiparm";
885 #endif /* TRACE */
886     result = tparam_internal(FALSE, string, ap);
887     va_end(ap);
888     return result;
889 }