Sortix nightly manual
This manual documents Sortix nightly, a development build that has not been officially released. You can instead view this document in the latest official manual.
NAME
curses_echochar, echochar, wechochar, pechochar — curses add characters and then refresh routinesLIBRARY
Curses Library (libcurses, -lcurses)SYNOPSIS
#include <curses.h>echochar(const chtype ch);
wechochar(WINDOW *win, const chtype ch);
pechochar(WINDOW *pad, const chtype ch);
DESCRIPTION
These functions add characters to stdscr or to the specified window or pad and then cause an immediate refresh() of that window or pad.RETURN VALUES
These functions will return one of the following values:- OK
- The function completed successfully.
- ERR
- An error occurred in the function.