Applies parameters (padding) to a terminal capability.
Curses Library (libcurses.a)
#include <curses.h>
char *tparm( TermCap, Parm1, Parm2, . . . Parm9)
char *TermCap;
int Parm1, Parm2, . . . Parm9;
The tparm subroutine applies parameters (padding) to a terminal capability.
1506-098 (E) Missing argument(s)
Parm# | Specifies the parameters (up to nine) to instantiate. |
TermCap | Specifies the terminal capability to apply the parameters to. These terminal capabilities are defined in the term.h file. |
The tparm subroutine returns the escape sequence specified by the TermCap parameter with the specified parameters applied. After the escape sequence is received, it can be output by a subroutine like the tputs (tputs Subroutine) subroutine.
home_sequence = tparm(cursor_home);
move_sequence = tparm(cursor_address, 18, 40);
Curses Overview for Programming in AIX 5L Version 5.2 General Programming Concepts: Writing and Debugging Programs.
List of Curses Subroutines in AIX 5L Version 5.2 General Programming Concepts: Writing and Debugging Programs.
Understanding Terminals with Curses in AIX 5L Version 5.2 General Programming Concepts: Writing and Debugging Programs.