my attempt at a test framework for C
Go to file
2022-01-03 17:29:11 +01:00
assert move xassert.h to assert/assert.h so it can be included as <assert.h> by prepending the assert/ dir to the include search path and use include_next to facilitate that. Removed -pedantic from C flags of examples because include_next is an extension. 2022-01-03 16:17:25 +01:00
examples move xassert.h to assert/assert.h so it can be included as <assert.h> by prepending the assert/ dir to the include search path and use include_next to facilitate that. Removed -pedantic from C flags of examples because include_next is an extension. 2022-01-03 16:17:25 +01:00
.gitignore gitignore .idea/ dir 2022-01-03 15:21:01 +01:00
CMakeLists.txt move xassert.h to assert/assert.h so it can be included as <assert.h> by prepending the assert/ dir to the include search path and use include_next to facilitate that. Removed -pedantic from C flags of examples because include_next is an extension. 2022-01-03 16:17:25 +01:00
LICENSE Initial commit 2022-01-02 14:55:36 +01:00
README.md Initial commit 2022-01-02 14:55:36 +01:00
xtest.c use _Bool instead of int for boolean variables 2022-01-03 17:29:11 +01:00
xtest.h use _Bool instead of int for boolean variables 2022-01-03 17:29:11 +01:00

xtest

my attempt at a test framework for C