forked from pushkar147/conio4gcc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conio.h
53 lines (44 loc) · 993 Bytes
/
conio.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*
* This is conio.h compatible header file for gcc.
*/
#ifndef _CONIO_H
#define _CONIO_H 1
#include <termios.h>
#include <unistd.h>
#include<stdlib.h>
#include <stdio.h>
void clrscr()
{
system("clear");
}
void gotoxy(int x,int y)
{
printf("%c[%d;%df",0x1B,y,x);
}
/* reads from keypress, doesn't echo */
int getch(void)
{
struct termios oldattr, newattr;
int ch;
tcgetattr( STDIN_FILENO, &oldattr );
newattr = oldattr;
newattr.c_lflag &= ~( ICANON | ECHO );
tcsetattr( STDIN_FILENO, TCSANOW, &newattr );
ch = getchar();
tcsetattr( STDIN_FILENO, TCSANOW, &oldattr );
return ch;
}
/* reads from keypress, echoes */
int getche(void)
{
struct termios oldattr, newattr;
int ch;
tcgetattr( STDIN_FILENO, &oldattr );
newattr = oldattr;
newattr.c_lflag &= ~( ICANON );
tcsetattr( STDIN_FILENO, TCSANOW, &newattr );
ch = getchar();
tcsetattr( STDIN_FILENO, TCSANOW, &oldattr );
return ch;
}
#endif /* conio.h */