A simple library which contains some basic conio.h functions for linux users.
Clone the Repository :
git clone https://github.com/yogesh-hackx/conioFunctions
Configuration:
cd conioFunctions
chmod +x configure.sh
sudo ./configure.sh
In your C/C++ code just include "con.h" as follows :
#include "con.h"
And then use regular conio.h functions as usual like:
int x;
x = getch();
or
clrscr();
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.