From 84ec6d2c747843c114ee11e6b5b04cfa3cfbb69c Mon Sep 17 00:00:00 2001 From: Kyle Altendorf Date: Sat, 21 Sep 2019 16:12:31 -0400 Subject: Separate test function and main() This allows for inclusion of the test function/file in a program with an existing main(). This is an isolated piece of #19. --- testmain.c | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 testmain.c (limited to 'testmain.c') diff --git a/testmain.c b/testmain.c new file mode 100644 index 0000000..bb9e024 --- /dev/null +++ b/testmain.c @@ -0,0 +1,5 @@ +int siphash_test(); + +int main(void) { + return siphash_test(); +} -- cgit v1.2.3