Outputs a string with padding information.
#include <curses.h>
#include <term.h>
tputs( String, LinesAffected, PutcLikeSub)
char *String;
int LinesAffected;
int (*PutcLikeSub) ();
The tputs subroutine outputs a string with padding information applied. String must be a terminfo string variable or the return value from tparm, tgetstr, tigetstr, or tgoto subroutines.
int_my_putchar(); tputs(clear_screen, 1 ,my_putchar);
int_my_putchar(); tputs(tparm(cursor_address, 18, 40), 1, my_putchar);
This subroutine is part of Base Operating System (BOS) Runtime.
The tparm (tparm Subroutine) subroutine.
Curses Overview for Programming, List of Curses Subroutines, Understanding Terminals with Curses in AIX 5L Version 5.1 General Programming Concepts: Writing and Debugging Programs.