Ryan Scott / menuSystemMbed

Fork of menuSystemMbed by Brad Smith

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers console.h Source File

console.h

00001 // console.h
00002 //
00003 #ifndef CONSOLE_H
00004 #define CONSOLE_H
00005 
00006 #include <iostream>
00007 #include <iomanip>
00008 #include <cmath>
00009 #include <cstdlib>
00010 
00011 
00012 void clrscr();
00013 void gotoxy(int, int);
00014 void printXY( char * text, int x, int y);
00015 void setrgb(int);
00016 
00017 #endif