X/Open Curses Library Functions echowchar(3XCURSES)
NAME
echowchar, wechowchar - add a complex 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 echowchar(const cchart *wch);
int wechowchar(WINDOW *win, const cchart *wch);
DESCRIPTION
The echowchar() function produces the same effect as cal-
ling addwch(3XCURSES) and then refresh(3XCURSES). The
wechowchar() function produces the same effect as calling
waddwch(3XCURSES) and then wrefresh(3XCURSES).
PARAMETERS
wch Is a pointer to the complex character to be written
to the window.
win Is a pointer to the window in which the character is
to be added.
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 echowchar(3XCURSES)
ATRIBUTE TYPE ATRIBUTE VALUE
Interface Stability Standard
MT-Level Unsafe
SEE ALSO
addwch(3XCURSES), doupdate(3XCURSES), echochar(3XCURSES),
libcurses(3XCURSES), attributes(5), standards(5)
SunOS 5.11 Last change: 5 Jun 2002 2
|