diff options
author | Kyle Altendorf <sda@fstab.net> | 2019-09-21 16:12:31 -0400 |
---|---|---|
committer | Kyle Altendorf <sda@fstab.net> | 2019-09-21 16:12:31 -0400 |
commit | 84ec6d2c747843c114ee11e6b5b04cfa3cfbb69c (patch) | |
tree | ab877193da84b7a00dc6d363dccbbcb09065372d /test.c | |
parent | Merge pull request #21 from altendky/full_siphash_format_specifiers (diff) | |
download | siphash-84ec6d2c747843c114ee11e6b5b04cfa3cfbb69c.tar.gz siphash-84ec6d2c747843c114ee11e6b5b04cfa3cfbb69c.tar.xz |
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.
Diffstat (limited to '')
-rw-r--r-- | test.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -43,7 +43,7 @@ const char *labels[4] = { size_t lengths[4] = {8, 16, 4, 8}; -int main() { +int siphash_test() { uint8_t in[64], out[16], k[16]; int i; #ifndef GETVECTORS |