diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2024-11-20 23:55:07 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2024-11-20 23:55:07 +0100 |
commit | 3ba87dc43a63cfb983233857550c1caed32c9079 (patch) | |
tree | 27cb9860745742f7ba48ee70aa5ca6217ca1264e /FICS/fics_getsalt.h | |
parent | fa0dcf92ef333881e680cbe338aca2d78b848156 (diff) |
Added begin/end decls
Diffstat (limited to 'FICS/fics_getsalt.h')
-rw-r--r-- | FICS/fics_getsalt.h | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/FICS/fics_getsalt.h b/FICS/fics_getsalt.h index c22f9c8..317ae27 100644 --- a/FICS/fics_getsalt.h +++ b/FICS/fics_getsalt.h @@ -1,17 +1,13 @@ #ifndef FICS_GETSALT_H #define FICS_GETSALT_H +#include "common.h" + #define FICS_SALT_BEG "$2b$10$" #define FICS_SALT_SIZE 30 -#ifdef __cplusplus -extern "C" { -#endif - +__FICS_BEGIN_DECLS char *fics_getsalt(void); - -#ifdef __cplusplus -} -#endif +__FICS_END_DECLS #endif |