File indexing completed on 2025-01-18 10:12:40
0001
0002 #ifndef sodium_version_H
0003 #define sodium_version_H
0004
0005 #include "export.h"
0006
0007 #define SODIUM_VERSION_STRING "1.0.20"
0008
0009 #define SODIUM_LIBRARY_VERSION_MAJOR 26
0010 #define SODIUM_LIBRARY_VERSION_MINOR 2
0011
0012
0013 #ifdef __cplusplus
0014 extern "C" {
0015 #endif
0016
0017 SODIUM_EXPORT
0018 const char *sodium_version_string(void);
0019
0020 SODIUM_EXPORT
0021 int sodium_library_version_major(void);
0022
0023 SODIUM_EXPORT
0024 int sodium_library_version_minor(void);
0025
0026 SODIUM_EXPORT
0027 int sodium_library_minimal(void);
0028
0029 #ifdef __cplusplus
0030 }
0031 #endif
0032
0033 #endif