menu system menus complete
Fork of menuSystemMbed by
console.h
- Committer:
- Rybowonder
- Date:
- 2013-03-08
- Revision:
- 3:bdf42b6c15f4
- Parent:
- 0:a5ece7312edc
File content as of revision 3:bdf42b6c15f4:
// console.h // #ifndef CONSOLE_H #define CONSOLE_H #include <iostream> #include <iomanip> #include <cmath> #include <cstdlib> void clrscr(); void gotoxy(int, int); void printXY( char * text, int x, int y); void setrgb(int); #endif