- /* Inicio Curses */
- signal(SIGINT, finish); /* arrange interrupts to terminate */
- initscr(); /* initialize the curses library */
- keypad(stdscr, TRUE); /* enable keyboard mapping */
- nonl(); /* tell curses not to do NL->CR/NL on output */
- cbreak(); /* take input chars one at a time, no wait for \n */
- noecho(); /* don't echo input */
-
- /* Verifico un tamaño minimo de consola */
- if ((LINES < 25) || (COLS < 80)) {
- endwin();
- printf("El tamaño de la consola debe ser de por lo menos 80x25!\n");
- return 1;
- }