quickjs-tart

quickjs-based runtime for wallet-core logic
Log | Files | Refs | README | LICENSE

commit e5b20a5cce755a16019ed2b74151b9b8172d60e3
parent 707b2357086413ea12954dfb11512d0281997cb2
Author: Marc Stibane <marc@taler.net>
Date:   Mon,  9 Jan 2023 11:23:06 +0100

version.h for Xcode builds

Diffstat:
Asubprojects/libsodium/builds/xcode/version.h | 33+++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+), 0 deletions(-)

diff --git a/subprojects/libsodium/builds/xcode/version.h b/subprojects/libsodium/builds/xcode/version.h @@ -0,0 +1,33 @@ + +#ifndef sodium_version_H +#define sodium_version_H + +#include "export.h" + +#define SODIUM_VERSION_STRING "1.0.18" + +#define SODIUM_LIBRARY_VERSION_MAJOR 10 +#define SODIUM_LIBRARY_VERSION_MINOR 3 + + +#ifdef __cplusplus +extern "C" { +#endif + +SODIUM_EXPORT +const char *sodium_version_string(void); + +SODIUM_EXPORT +int sodium_library_version_major(void); + +SODIUM_EXPORT +int sodium_library_version_minor(void); + +SODIUM_EXPORT +int sodium_library_minimal(void); + +#ifdef __cplusplus +} +#endif + +#endif