Include core.[ch]
This commit is contained in:
parent
02cea61336
commit
ca781f4837
22
src/libsodium/core.c
Normal file
22
src/libsodium/core.c
Normal file
@ -0,0 +1,22 @@
|
||||
|
||||
#include "sodium.h"
|
||||
|
||||
int
|
||||
sodium_init(const struct sodium_options *options)
|
||||
{
|
||||
(void) options;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
sodium_reinit(void)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
sodium_shutdown(void)
|
||||
{
|
||||
|
||||
}
|
9
src/libsodium/include/sodium/core.h
Normal file
9
src/libsodium/include/sodium/core.h
Normal file
@ -0,0 +1,9 @@
|
||||
|
||||
#ifndef __SODIUM_CORE_H__
|
||||
#define __SODIUM_CORE_H__
|
||||
|
||||
int sodium_init(const struct sodium_options *options);
|
||||
int sodium_reinit(void);
|
||||
void sodium_shutdown(void);
|
||||
|
||||
#endif
|
Loading…
Reference in New Issue
Block a user