NCurses: Difference between revisions
Appearance
m →Links |
mNo edit summary |
||
Line 1: | Line 1: | ||
The '''ncurses''' (''new curses'') library is an open source multi-platform version of the [[curses]] programming library from System V Release 4.0. | |||
Unlike [[PD Curses]] it requires a database of terminal specifications, which is a part of separate package called '''terminfo'''. | |||
==Support utilities== | |||
*captoinfo - a termcap conversion tool | |||
*clear - utility for clearing the screen | |||
*infocmp - the terminfo decompiler | |||
*tabs - set tabs on a terminal | |||
*tic - terminfo compiler | |||
*toe - table of terminfo entries | |||
*tput - utility for retrieving terminal capabilities in shell scripts | |||
*tset - initialize the terminal | |||
==Version== | ==Version== | ||
* | * 5.5 [http://hobbes.nmsu.edu/download/pub/os2/dev/util/ncurses-5.5-os2.zip ncurses-5.5-os2.zip] | ||
* 5.9 (2011-04-04) | |||
* 6.0 (2015-10-10) | |||
* 6.1 (2018-01-27) | |||
==License== | ==License== | ||
* Open source, originally in the [[public domain]], current version released under a functional equivalent of the [[MIT License]] | * Open source, originally in the [[public domain]], current version released under a functional equivalent of the [[MIT License]] | ||
;Authors: Zeyd M. Ben-Halim, Eric S. Raymond, Thomas E. Dickey | |||
==Links== | ==Links== | ||
* [https://www.gnu.org/software/ncurses/ ] | |||
* Eric S. Raymond: [http://frank.harvard.edu/~coldwell/ncurses/hackguide.html A Hacker's Guide to NCURSES] - (Outdated but still useful) | * Eric S. Raymond: [http://frank.harvard.edu/~coldwell/ncurses/hackguide.html A Hacker's Guide to NCURSES] - (Outdated but still useful) | ||
[[Category:C Libraries]][[Category:Software written in C]][[Category:Open Source Software]] | [[Category:C Libraries]][[Category:Software written in C]][[Category:Open Source Software]] |
Revision as of 03:40, 11 December 2018
The ncurses (new curses) library is an open source multi-platform version of the curses programming library from System V Release 4.0.
Unlike PD Curses it requires a database of terminal specifications, which is a part of separate package called terminfo.
Support utilities
- captoinfo - a termcap conversion tool
- clear - utility for clearing the screen
- infocmp - the terminfo decompiler
- tabs - set tabs on a terminal
- tic - terminfo compiler
- toe - table of terminfo entries
- tput - utility for retrieving terminal capabilities in shell scripts
- tset - initialize the terminal
Version
- 5.5 ncurses-5.5-os2.zip
- 5.9 (2011-04-04)
- 6.0 (2015-10-10)
- 6.1 (2018-01-27)
License
- Open source, originally in the public domain, current version released under a functional equivalent of the MIT License
- Authors
- Zeyd M. Ben-Halim, Eric S. Raymond, Thomas E. Dickey
Links
- [1]
- Eric S. Raymond: A Hacker's Guide to NCURSES - (Outdated but still useful)