mirror of
https://github.com/jedisct1/libsodium.git
synced 2024-12-23 20:15:19 -07:00
Declare the sodium_options anon struct.
This commit is contained in:
parent
faa399c3df
commit
dd45e3824f
@ -2,7 +2,7 @@
|
||||
#include "sodium.h"
|
||||
|
||||
int
|
||||
sodium_init(const struct sodium_options *options)
|
||||
sodium_init(sodium_options *options)
|
||||
{
|
||||
(void) options;
|
||||
|
||||
|
@ -2,7 +2,9 @@
|
||||
#ifndef __SODIUM_CORE_H__
|
||||
#define __SODIUM_CORE_H__
|
||||
|
||||
int sodium_init(const struct sodium_options *options);
|
||||
typedef struct sodium_options sodium_options;
|
||||
|
||||
int sodium_init(const sodium_options *options);
|
||||
int sodium_reinit(void);
|
||||
void sodium_shutdown(void);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user