Simple Linux implementation of Borland's conio (conio.h) library. It uses Ncurses. It includes most functions required to write a basic application using conioh (i.e. getch(), cprintf(), puts() and more).
License
GNU General Public License version 2.0 (GPLv2)Follow Linux c++ implementation of conio.h
nel_h2
MongoDB Atlas runs apps anywhere
MongoDB Atlas gives you the freedom to build and run modern applications anywhere—across AWS, Azure, and Google Cloud. With global availability in over 115 regions, Atlas lets you deploy close to your users, meet compliance needs, and scale with confidence across any geography.
Rate This Project
Login To Rate This Project
User Reviews
-
This is a nice and simple solution to port old borland c DOS programs to current platforms. It just works.
-
Guys, it works with a bit of tinkering around. The developer decided to celebrate 6 New Year's without us. diff a/conio.h b/conio.h 297a298 > return 0; ------------------------ forcing ncurses by putting '#include <ncurses.h>' in all files resolves all compile errors. ------------------------ compiler: g++ (Ubuntu 4.4.3-4ubuntu5) 4.4.3
-
It's silly to use something like conio! all the functions in conio have better equivalents and it's not included in Standard C++