Implementing XML

This commit is contained in:
2024-07-08 16:56:54 +05:30
commit d8d3c80ad4
95 changed files with 9150 additions and 0 deletions

18
include/printclr.h Normal file
View File

@@ -0,0 +1,18 @@
#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