13 lines
197 B
C
13 lines
197 B
C
#ifndef COLOROUTPUT
|
|
#define COLOROUTPUT
|
|
|
|
extern char *COLOR_Reset;
|
|
extern char *COLOR_Red;
|
|
extern char *COLOR_Green;
|
|
extern char *COLOR_Bold;
|
|
|
|
void colorInit (void);
|
|
void colorDone (void);
|
|
|
|
#endif
|