NAME
addch, mvaddch, mvwaddch, waddch — add a single-byte character and rendition to a window and advance the cursor
SYNOPSIS
#include <curses.h>
int addch(const chtype ch);
int mvaddch(int y, int x, const chtype ch);
int mvwaddch(WINDOW *win, int y, int x, const chtype ch);
int waddch(WINDOW *win, const chtype ch);
DESCRIPTION
The
addch(),
mvaddch(),
mvwaddch()
and
waddch()
functions place ch into the current or specified window at the
current or specified position, and then advance the window's cursor position.
These functions perform wrapping. These functions perform special-character
processing.
RETURN VALUE
Upon successful completion, these functions return OK.
Otherwise they return ERR.
ERRORS
No errors are defined.
APPLICATION USAGE
These functions are only guaranteed to operate reliably on character sets in
which each character fits into a single byte, whose attributes can be
expressed using only constants with the A_ prefix.
CHANGE HISTORY
First released in X/Open Curses, Issue 2.
X/Open Curses, Issue 4
The entry is rewritten for clarity.
Also the type of argument ch is changed
from chtype to const chtype.