mirror of
https://github.com/Hizenberg469/GitMap.git
synced 2026-04-19 17:52:24 +03:00
18 lines
217 B
C
18 lines
217 B
C
#ifndef __PRINTCLR_H
|
|
#define __PRINTCLR_H
|
|
|
|
typedef enum {
|
|
FG_BLACK = 0,
|
|
FG_RED,
|
|
FG_GREEN,
|
|
FG_YELLOW,
|
|
FG_BLUE,
|
|
FG_MAGENTA,
|
|
FG_CYAN,
|
|
FG_WHITE
|
|
}fg_clr_t;
|
|
|
|
void
|
|
printclr(fg_clr_t fg, const char* fmt, ...);
|
|
|
|
#endif |