Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/littlefs-project/littlefs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lfs.h
diff options
context:
space:
mode:
authorChristopher Haster <chaster@utexas.edu>2020-11-28 21:37:01 +0300
committerChristopher Haster <chaster@utexas.edu>2020-12-04 08:46:59 +0300
commit45afded784dfb6ad8cc92adbf9e3570686d7ecf5 (patch)
treebfdee7a573d3d22ad6206993904039547c7d4618 /lfs.h
parent00a9ba7826318408d280aafe5dc527a43b2c965d (diff)
Moved LFS_TRACE calls to API wrapper functions
This removes quite a bit of extra code needed to entertwine the LFS_TRACE calls into the original funcions. Also changed temporary return type to match API declaration where necessary.
Diffstat (limited to 'lfs.h')
-rw-r--r--lfs.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/lfs.h b/lfs.h
index 3fec4df..0ac0639 100644
--- a/lfs.h
+++ b/lfs.h
@@ -16,6 +16,7 @@ extern "C"
{
#endif
+
/// Version info ///
// Software library version
@@ -657,6 +658,7 @@ int lfs_fs_traverse(lfs_t *lfs, int (*cb)(void*, lfs_block_t), void *data);
int lfs_migrate(lfs_t *lfs, const struct lfs_config *cfg);
#endif
+
#ifdef __cplusplus
} /* extern "C" */
#endif