00001 /* ANSI.H */ 00002 00003 #ifndef _ANSI_H_ 00004 #define _ANSI_H_ 00005 00006 /* 00007 * These functions do some standard ascii things 00008 * which should be clear from their names 00009 */ 00010 00011 void clrscr(void); 00012 void goxy(int x, int y); 00013 void hilight(void); 00014 void underline(void); 00015 void blink(void); 00016 void reverse(void); 00017 void invisible(void); 00018 void norm(void); 00019 void up(int x); 00020 void down(int x); 00021 void left(int x); 00022 void right(int x); 00023 00024 #endif 00025 00026