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_addchstr, addchstr, waddchstr, addchnstr, waddchnstr, mvaddchstr, mvwaddchstr, mvaddchnstr, mvwaddchnstr — curses add character strings to windows routinesLIBRARY
Curses Library (libcurses, -lcurses)SYNOPSIS
#include <curses.h>addchstr(const chtype *chstr);
waddchstr(WINDOW *win, const chtype *chstr);
mvaddchstr(int y, int x, const chtype *chstr);
mvwaddchstr(WINDOW *win, int y, int x, const chtype *chstr);
addchnstr(const chtype *chstr, int n);
waddchnstr(WINDOW *win, const chtype *chstr, int n);
mvaddchnstr(int y, int x, const chtype *chstr, int n);
mvwaddchnstr(WINDOW *win, int y, int x, const chtype *chstr, int n);
DESCRIPTION
These functions add character strings and attributes to stdscr or to the specified window.RETURN VALUES
The functions will return one of the following values:- OK
- The function completed successfully.
- ERR
- An error occurred in the function.