You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
236 B
14 lines
236 B
|
|
#define TEST_NAME "sodium_core"
|
|
#include "cmptest.h"
|
|
|
|
int main(void)
|
|
{
|
|
printf("%d\n", sodium_init());
|
|
|
|
(void)sodium_runtime_has_neon();
|
|
(void)sodium_runtime_has_sse2();
|
|
(void)sodium_runtime_has_sse3();
|
|
|
|
return 0;
|
|
}
|