1 /*
2  * Copyright (c) 2018 Jan Van Winkel <jan.van_winkel@dxplore.eu>
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef ZEPHYR_LIB_GUI_LVGL_LVGL_FS_H_
8 #define ZEPHYR_LIB_GUI_LVGL_LVGL_FS_H_
9 
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13 
14 void lvgl_fs_init(void);
15 
16 #ifdef __cplusplus
17 }
18 #endif
19 
20 #endif /* ZEPHYR_LIB_GUI_LVGL_LVGL_FS_H */
21