Fix for x86_64 build fail
[platform/upstream/connectedhomeip.git] / examples / common / m5stack-tft / repo / components / spiffs / spiffs_vfs.h
1 /*
2  * spiffs VFS public function
3  *
4  * Author: LoBo (loboris@gmail.com / https://github.com/loboris)
5  *
6  * Part of this code is copied from or inspired by LUA-RTOS_ESP32 project:
7  *
8  * https://github.com/whitecatboard/Lua-RTOS-ESP32
9  * IBEROXARXA SERVICIOS INTEGRALES, S.L. & CSS IBÉRICA, S.L.
10  * Jaume Olivé (jolive@iberoxarxa.com / jolive@whitecatboard.org)
11  *
12  */
13
14 #define SPIFFS_BASE_PATH "/spiffs"
15
16
17 int spiffs_is_registered;
18 int spiffs_is_mounted;
19
20 void vfs_spiffs_register();
21 int spiffs_mount();
22 int spiffs_unmount(int unreg);
23 void spiffs_fs_stat(uint32_t *total, uint32_t *used);