summaryrefslogtreecommitdiff
path: root/firmware/common/dircache.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/common/dircache.c')
-rw-r--r--firmware/common/dircache.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/firmware/common/dircache.c b/firmware/common/dircache.c
index e1b592f005..7599c1b6c5 100644
--- a/firmware/common/dircache.c
+++ b/firmware/common/dircache.c
@@ -690,6 +690,14 @@ bool dircache_is_enabled(void)
690} 690}
691 691
692/** 692/**
693 * Returns true if dircache is being initialized.
694 */
695bool dircache_is_initializing(void)
696{
697 return dircache_initializing;
698}
699
700/**
693 * Returns the current number of entries (directories and files) in the cache. 701 * Returns the current number of entries (directories and files) in the cache.
694 */ 702 */
695int dircache_get_entry_count(void) 703int dircache_get_entry_count(void)