Skip to content

Commit

Permalink
Add C++ guards to public headers
Browse files Browse the repository at this point in the history
  • Loading branch information
FreddieChopin committed Jul 13, 2018
1 parent c72d252 commit 577d777
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
9 changes: 9 additions & 0 deletions emubd/lfs_emubd.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@
#include "lfs.h"
#include "lfs_util.h"

#ifdef __cplusplus
extern "C"
{
#endif


// Config options
#ifndef LFS_EMUBD_READ_SIZE
Expand Down Expand Up @@ -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
9 changes: 9 additions & 0 deletions lfs.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@
#include <stdint.h>
#include <stdbool.h>

#ifdef __cplusplus
extern "C"
{
#endif


/// Version info ///

Expand Down Expand Up @@ -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
9 changes: 9 additions & 0 deletions lfs_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@
#include <stdio.h>
#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
Expand Down Expand Up @@ -173,5 +178,9 @@ static inline void lfs_free(void *p) {
}


#ifdef __cplusplus
} /* extern "C" */
#endif

#endif
#endif

0 comments on commit 577d777

Please sign in to comment.