conio.h
Código
#ifndef CONIO_PARA_LINUX #define CONIO_PARA_LINUX #include <stdio.h> #include <termios.h> void gotoxy(int x, int y) { } static char getch_interno(int eco) { char c; struct termios old, new; tcgetattr(0, &old); new = old; new.c_lflag &= ~ICANON; new.c_lflag &= eco ? ECHO : ~ECHO; tcsetattr(0, TCSANOW, &new); tcsetattr(0, TCSANOW, &old); return c; } return getch_interno(0); } char getche() { return getch_interno(1); } #endif