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

17
src/util/bool.h Normal file
View File

@@ -0,0 +1,17 @@
#ifndef BOOL_H
#define BOOL_H
#ifndef bool
#define bool int
#define false 0
#define true 1
#endif
#define SUCCESS true
#define FAILURE false
#ifndef Status
typedef int Status;
#endif
#endif