1 /* 2 * Copyright (c) 2006-2021, RT-Thread Development Team 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 * 6 * Change Logs: 7 * Date Author Notes 8 */ 9 10 #ifndef DFS_PRIVATE_H__ 11 #define DFS_PRIVATE_H__ 12 13 #include <dfs.h> 14 15 #define DBG_TAG "DFS" 16 #define DBG_LVL DBG_INFO 17 #include <rtdbg.h> 18 19 #define NO_WORKING_DIR "system does not support working directory\n" 20 21 /* extern variable */ 22 extern const struct dfs_filesystem_ops *filesystem_operation_table[]; 23 extern struct dfs_filesystem filesystem_table[]; 24 extern const struct dfs_mount_tbl mount_table[]; 25 26 extern char working_directory[]; 27 28 #endif 29