libksr/include/ksr/logging.h
Madeorsk 46b6f24432 Create first structures and functions.
+ 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.
2021-07-31 19:06:57 +02:00

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"