package curses

  1. Overview
  2. Docs
Bindings to ncurses

Install

dune-project
 Dependency

Authors

Maintainers

Sources

curses-1.0.12.tbz
sha256=ace176be8d0014aaf7ef09bffb0a03bf01eedce213f031c606a26afb8b1b822d
sha512=f6100ab09f592b97aadadab453c1ab394b99c653cf32c8b3a8597579261672990b155c71af5b55bfec5df5340364cb8923ca8a3bf0814c470fafe08a27ea26dc

doc/index.html

curses

API

Library curses

  • 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.