


The standard library Ncurses api defines access to the standard unix ncurses library for manipulating terminal displays with addressable cursors.
The Ncurses api is implemented by the ncurses package.
The Ncurses api source code is in src/lib/std/src/ncurses.api.
The above information is manually maintained and may contain errors.
api { initscr : Void -> Void;
nl : Void -> Void;
nonl : Void -> Void;
cbreak : Void -> Void;
noecho : Void -> Void;
start_color : Void -> Void;
endwin : Void -> Void;
refresh : Void -> Void;
has_colors : Void -> Bool;
getch : Void -> Char;
addch : Char -> Void;
move : (Int , Int) -> Void;
};


