mirror of
https://github.com/jedisct1/libsodium.git
synced 2026-08-25 08:37:13 +09:00
12 lines
187 B
C
12 lines
187 B
C
|
|
#ifndef __SODIUM_CORE_H__
|
|
#define __SODIUM_CORE_H__
|
|
|
|
typedef struct sodium_options sodium_options;
|
|
|
|
int sodium_init(void);
|
|
int sodium_reinit(void);
|
|
void sodium_shutdown(void);
|
|
|
|
#endif
|