mirror of
https://github.com/oopuuu/zTC1.git
synced 2025-12-16 15:08:15 +08:00
28 lines
367 B
C
28 lines
367 B
C
|
|
#ifndef __SODIUM_RUNTIME_H__
|
|
#define __SODIUM_RUNTIME_H__ 1
|
|
|
|
#include "export.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
SODIUM_EXPORT
|
|
int sodium_runtime_get_cpu_features(void);
|
|
|
|
SODIUM_EXPORT
|
|
int sodium_runtime_has_neon(void);
|
|
|
|
SODIUM_EXPORT
|
|
int sodium_runtime_has_sse2(void);
|
|
|
|
SODIUM_EXPORT
|
|
int sodium_runtime_has_sse3(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|