diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-09-01 17:08:40 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-09-01 17:08:40 +0200 |
commit | 2e28c45601a57b1d23e9cad33d2bdcc59e8a3f4f (patch) | |
tree | 346da06f09e147197a805fa2494ca1633531d8c9 /include/sqfs/compress.h | |
parent | 4ee671b63b18701a29cf9f119e2dc26a055c69c5 (diff) |
Add C++ gurads to publicly exported functions
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'include/sqfs/compress.h')
-rw-r--r-- | include/sqfs/compress.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/sqfs/compress.h b/include/sqfs/compress.h index c6de185..3860353 100644 --- a/include/sqfs/compress.h +++ b/include/sqfs/compress.h @@ -51,6 +51,10 @@ struct compressor_t { void (*destroy)(compressor_t *stream); }; +#ifdef __cplusplus +extern "C" { +#endif + bool compressor_exists(E_SQFS_COMPRESSOR id); /* block_size is the configured block size for the SquashFS image. Needed @@ -68,4 +72,8 @@ const char *compressor_name_from_id(E_SQFS_COMPRESSOR id); int compressor_id_from_name(const char *name, E_SQFS_COMPRESSOR *out); +#ifdef __cplusplus +} +#endif + #endif /* COMPRESS_H */ |