New unit testing skeleton

This commit is contained in:
o9000
2017-12-19 15:28:57 +01:00
parent c2f8c210f8
commit 58e030de5d
11 changed files with 407 additions and 7 deletions

10
src/util/colors.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef COLORS_H
#define COLORS_H
#define GREEN "\033[1;32m"
#define YELLOW "\033[1;33m"
#define RED "\033[1;31m"
#define BLUE "\033[1;34m"
#define RESET "\033[0m"
#endif