curses 강좌 #1 - What is curses?
Programming/curses / 2009. 11. 16. 17:18
오늘부터 '네트워크 프로그래밍 강좌 텀 프로젝트 시작' 기념 curses 강좌를 시작합니다.
저도 사실 이번에 처음해보는거라 많은 오류가 있을 듯 합니다. 흐흐;;;
ncurses 라고 해서 curses 프로그램을 좀 더 빠르게 랩핑된 라이브러리가 있는데, 제 개발환경에는 curses 밖에 없으므로 curses 기준으로 진행을 하겠습니다.
저도 사실 이번에 처음해보는거라 많은 오류가 있을 듯 합니다. 흐흐;;;
위에서 말하는 CDK는 Curses Development Kit 의 약자입니다. 즉, C로 구성되어진 text user 인터페이스기반 위짓 라이브러리라고 생각하시면 될 것 같습니다.CDK is a library written in C that provides a collection of widgets for text user interfaces (TUI) development. The widgets wrap ncurses functionality to make writing full screen curses programs faster. A Perl binding is also available.
There are two versions of the library. It was originally written by Mike Glover, introduced as version 4.6 in comp.sources.unix.[1] The other version was extended beginning in May 1999 by Thomas Dickey.
[reference] http://en.wikipedia.org/wiki/Curses_Development_Kit
ncurses 라고 해서 curses 프로그램을 좀 더 빠르게 랩핑된 라이브러리가 있는데, 제 개발환경에는 curses 밖에 없으므로 curses 기준으로 진행을 하겠습니다.