Skip to content

Commit

Permalink
deps: for add libsodium version.h file
Browse files Browse the repository at this point in the history
This file is excluded via .gitignore for some reason.
  • Loading branch information
trevnorris committed Oct 25, 2023
1 parent dbc4adf commit 5371a54
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions deps/sodium/src/libsodium/include/sodium/version.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@

#ifndef sodium_version_H
#define sodium_version_H

#include "export.h"

#define SODIUM_VERSION_STRING "1.0.19"

#define SODIUM_LIBRARY_VERSION_MAJOR 26
#define SODIUM_LIBRARY_VERSION_MINOR 1


#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

0 comments on commit 5371a54

Please sign in to comment.