diff options
Diffstat (limited to 'src/libcryptobox/keypairs_cache.h')
-rw-r--r-- | src/libcryptobox/keypairs_cache.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/libcryptobox/keypairs_cache.h b/src/libcryptobox/keypairs_cache.h index 4f54b6c9d..96e356a80 100644 --- a/src/libcryptobox/keypairs_cache.h +++ b/src/libcryptobox/keypairs_cache.h @@ -20,7 +20,7 @@ #include "keypair.h" -#ifdef __cplusplus +#ifdef __cplusplus extern "C" { #endif @@ -31,7 +31,7 @@ struct rspamd_keypair_cache; * @param max_items defines maximum count of elements in the cache * @return new cache */ -struct rspamd_keypair_cache *rspamd_keypair_cache_new (guint max_items); +struct rspamd_keypair_cache *rspamd_keypair_cache_new(guint max_items); /** @@ -40,17 +40,17 @@ struct rspamd_keypair_cache *rspamd_keypair_cache_new (guint max_items); * @param lk local key * @param rk remote key */ -void rspamd_keypair_cache_process (struct rspamd_keypair_cache *c, - struct rspamd_cryptobox_keypair *lk, - struct rspamd_cryptobox_pubkey *rk); +void rspamd_keypair_cache_process(struct rspamd_keypair_cache *c, + struct rspamd_cryptobox_keypair *lk, + struct rspamd_cryptobox_pubkey *rk); /** * Destroy old keypair cache * @param c cache object */ -void rspamd_keypair_cache_destroy (struct rspamd_keypair_cache *c); +void rspamd_keypair_cache_destroy(struct rspamd_keypair_cache *c); -#ifdef __cplusplus +#ifdef __cplusplus } #endif |