From af5e7495f3993c52573432cadde12169d5c05e62 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Wed, 15 Nov 2023 10:50:30 -0300 Subject: Add support for multi-file C project - have dynamic discovered dependencies via `mkdeps.hs`, and also move the listing of JavaScript files to it. - copy over stub C files for setting up the project skeleton. --- tests/tests-lib.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tests/tests-lib.h (limited to 'tests/tests-lib.h') diff --git a/tests/tests-lib.h b/tests/tests-lib.h new file mode 100644 index 0000000..a1e67ba --- /dev/null +++ b/tests/tests-lib.h @@ -0,0 +1,15 @@ +#ifndef TESTS_LIB_H +#define TESTS_LIB_H + +#include "../src/config.h" + +void +test_start(const char *const name); + +void +testing(const char *const message); + +void +test_ok(void); + +#endif -- cgit v1.2.3