Madeorsk
46b6f24432
+ Create ksrarrays. + Create ksrbuffers. + Create ksrpromises. + Create ksregex. + Create strings and files helper functions. + Define some logging constants. + Setup basic unit tests and code coverage.
12 lines
346 B
C
12 lines
346 B
C
#pragma once
|
|
|
|
#define TERMSTYLE_RESET "\033[0m"
|
|
#define TERMSTYLE_BLACK "\033[30m"
|
|
#define TERMSTYLE_RED "\033[31m"
|
|
#define TERMSTYLE_GREEN "\033[32m"
|
|
#define TERMSTYLE_YELLOW "\033[33m"
|
|
#define TERMSTYLE_BLUE "\033[34m"
|
|
#define TERMSTYLE_MAGENTA "\033[35m"
|
|
#define TERMSTYLE_CYAN "\033[36m"
|
|
#define TERMSTYLE_WHITE "\033[37m"
|