diff options
author | Christophe Grenier <grenier@cgsecurity.org> | 2009-01-10 16:04:39 +0100 |
---|---|---|
committer | Christophe Grenier <grenier@cgsecurity.org> | 2009-01-10 16:04:39 +0100 |
commit | 86f46991fb400a57d6c84699818dfeccfa08cc2a (patch) | |
tree | b4b66dfa6ce9ec06c4de918104054497ab38eae8 /src/luks.h | |
parent | 38ce28702691b4adc56898262a09cd1f0500a681 (diff) |
Modify header files for C function declaration if C++ compilation
Diffstat (limited to 'src/luks.h')
-rw-r--r-- | src/luks.h | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -20,6 +20,10 @@ LUKS on-disk-format: http://luks.endorphin.org/spec */ +#ifdef __cplusplus +extern "C" { +#endif + #define LUKS_CIPHERNAME_L 32 #define LUKS_CIPHERMODE_L 32 #define LUKS_HASHSPEC_L 32 @@ -54,3 +58,7 @@ struct luks_phdr { int check_LUKS(disk_t *disk_car,partition_t *partition,const int verbose); int recover_LUKS(disk_t *disk_car, const struct luks_phdr *sb,partition_t *partition,const int verbose, const int dump_ind); + +#ifdef __cplusplus +} /* closing brace for extern "C" */ +#endif |