Reputation: 19050
I want to write in C a command line tool with the following requirements:
I am not asking for code here, but for indications about where to start. I first made some experiments with "scanf" and it quickly become quite complicated. I then looked at ncurses, and it seems also quite low level. Is there any C libraries dedicated to this task, where would you start ?
Upvotes: 0
Views: 715
Reputation: 5988
I then looked at ncurses, and it seems also quite low level
CDK (Curses Development Kit) - high-level wrapper over ncurses
. I've had successful experience with it. When you need you always can use ncurses
directly.
Upvotes: 2