Tagged Questions

2
votes
1answer
114 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 ...
2
votes
2answers
313 views

Why getch() returns before press any key?

int main(int argc, char *argv[], char *env[]) { printf("Press any key to exit.\n"); getch(); return 0; } According to the man page, getch should wait until any key is pressed ...
1
vote
3answers
88 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 ...