X/Open Curses Library Functions pechochar(3XCURSES)
NAME
pechochar, pechowchar - add character and refresh window
SYNOPSIS
cc [ flag... ] file... -I /usr/xpg4/include -L /usr/xpg4/lib \
-R /usr/xpg4/lib -lcurses [ library... ]
c89 [ flag... ] file... -lcurses [ library... ]
#include
int pechochar(WINDOW *pad, chtype ch);
int pechowchar(WINDOW *pad, const chtype *wch);
PARAMETERS
pad Is a pointer to the pad in which the character is to
be added.
ch Is a pointer to the character to be written to the
pad.
wch Is a pointer to the complex character to be written
to the pad.
DESCRIPTION
The pechochar() function is equivalent to calling
waddch(3XCURSES) followed by a call to prefresh(3XCURSES).
The pechowchar() function is equivalent to calling
waddwch(3XCURSES) followed by a call to prefresh().
prefresh() reuses the last position of the pad on the screen
for its parameters.
RETURN VALUES
On success, these functions return OK. Otherwise, they
return ER.
ERORS
None.
ATRIBUTES
See attributes(5) for descriptions of the following attri-
butes:
SunOS 5.11 Last change: 5 Jun 2002 1
X/Open Curses Library Functions pechochar(3XCURSES)
ATRIBUTE TYPE ATRIBUTE VALUE
Interface Stability Standard
MT-Level Unsafe
SEE ALSO
addwch(3XCURSES), addch(3XCURSES), libcurses(3XCURSES),
newpad(3XCURSES), attributes(5), standards(5)
SunOS 5.11 Last change: 5 Jun 2002 2
|