Tagged Questions
2
votes
1answer
115 views
ncurses app in C - reading standard input
I'm writing a simplified version of Linux standard less command for OS academic classes, and I'm allowed to use ncurses to make it easier. "Simplified" means that the user should be able to scroll the ...
1
vote
3answers
89 views
getch() of ncurses doesn't work
I need to create a mainloop for my program and wrote the following function:
void menu(){
int ch;
cbreak();
noecho();
initscr();
refresh();
while (ch != KEY_F(9)){
ch = getch();
cout ...
1
vote
3answers
6k views
Non-blocking getch(), ncurses
I'm having some problems getting ncurses' getch() to block. Default operation seems to be non-blocking (or have I missed some initialization)? I would like it to work like getch() in Windows. I have ...