diff options
author | EuAndreh <eu@euandre.org> | 2021-07-30 20:17:11 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-07-30 20:17:26 -0300 |
commit | cfcfc5455f9916439265eb31b6f20f4beef31c64 (patch) | |
tree | 6ffc6188eb3b3bc5763c60fe3abf48231175c292 /src/unit-test.h | |
parent | Re-setup repository using C over Rust (diff) | |
download | gistatic-cfcfc5455f9916439265eb31b6f20f4beef31c64.tar.gz gistatic-cfcfc5455f9916439265eb31b6f20f4beef31c64.tar.xz |
src/: Add initial working version of generating the index, without translated strings still
Diffstat (limited to '')
-rw-r--r-- | src/unit-test.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/unit-test.h b/src/unit-test.h new file mode 100644 index 0000000..66e1748 --- /dev/null +++ b/src/unit-test.h @@ -0,0 +1,8 @@ +#ifndef UNIT_TEST_H +#define UNIT_TEST_H + +void test_start(const char *const name); +void testing(const char *const message); +void test_ok(); + +#endif |