package curses

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

curses 1.0.11

Libraries

This package provides the following libraries (via ocamlobjinfo):

curses

Documentation:

  • Curses * Bindings to the ncurses library. * * Beware, all coordinates are passed y first, then x. * * Functions whose name start with a "w" take as first argument the window the * function applies to. * Functions whose name start with "mv" take as first two arguments the * coordinates y and x of the point to move the cursor to. For example * mvaddch y x ch is the same as move y x; addch ch.