Fixes #53 Fixes #32
@@ -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);
+} /* extern "C" */
#endif
#include <stdint.h>
#include <stdbool.h>
/// 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);
@@ -34,6 +34,11 @@
#include <stdio.h>
// 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) {
}