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_refresh, refresh, wrefresh, wnoutrefresh, doupdate, immedok, flushok, leaveok, is_leaveok — curses terminal update routinesLIBRARY
Curses Library (libcurses, -lcurses)SYNOPSIS
#include <curses.h>refresh(void);
wrefresh(WINDOW *win);
wnoutrefresh(WINDOW *win);
doupdate(void);
immedok(WINDOW *win, boolf flag);
flushok(WINDOW *win, boolf flag);
leaveok(WINDOW *win, boolf flag);
is_leaveok(const WINDOW *win);
DESCRIPTION
These functions update the terminal with the contents of stdscr or of the specified window(s).RETURN VALUES
Functions returning pointers will return NULL if an error is detected. The functions that return an int will return one of the following values:- OK
- The function completed successfully.
- ERR
- An error occurred in the function.