From 577d777c20095b6030a3e0227d144081d5c4fe5c Mon Sep 17 00:00:00 2001 From: Freddie Chopin Date: Fri, 13 Jul 2018 09:34:49 +0200 Subject: [PATCH] Add C++ guards to public headers Fixes #53 Fixes #32 --- emubd/lfs_emubd.h | 9 +++++++++ lfs.h | 9 +++++++++ lfs_util.h | 9 +++++++++ 3 files changed, 27 insertions(+) diff --git a/emubd/lfs_emubd.h b/emubd/lfs_emubd.h index 85718de11a7..0fd43875fdf 100644 --- a/emubd/lfs_emubd.h +++ b/emubd/lfs_emubd.h @@ -10,6 +10,11 @@ #include "lfs.h" #include "lfs_util.h" +#ifdef __cplusplus +extern "C" +{ +#endif + // Config options #ifndef LFS_EMUBD_READ_SIZE @@ -75,4 +80,8 @@ int lfs_emubd_erase(const struct lfs_config *cfg, lfs_block_t block); int lfs_emubd_sync(const struct lfs_config *cfg); +#ifdef __cplusplus +} /* extern "C" */ +#endif + #endif diff --git a/lfs.h b/lfs.h index 3683d32d444..1b1be19ce91 100644 --- a/lfs.h +++ b/lfs.h @@ -10,6 +10,11 @@ #include #include +#ifdef __cplusplus +extern "C" +{ +#endif + /// Version info /// @@ -460,4 +465,8 @@ int lfs_traverse(lfs_t *lfs, int (*cb)(void*, lfs_block_t), void *data); int lfs_deorphan(lfs_t *lfs); +#ifdef __cplusplus +} /* extern "C" */ +#endif + #endif diff --git a/lfs_util.h b/lfs_util.h index d61c5458a0b..b2dc2371472 100644 --- a/lfs_util.h +++ b/lfs_util.h @@ -34,6 +34,11 @@ #include #endif +#ifdef __cplusplus +extern "C" +{ +#endif + // Macros, may be replaced by system specific wrappers. Arguments to these // macros must not have side-effects as the macros can be removed for a smaller @@ -173,5 +178,9 @@ static inline void lfs_free(void *p) { } +#ifdef __cplusplus +} /* extern "C" */ +#endif + #endif #endif