xref: /nrf52832-nimble/rt-thread/components/dfs/filesystems/elmfat/dfs_elm.h (revision 104654410c56c573564690304ae786df310c91fc)
1 /*
2  * Copyright (c) 2006-2018, RT-Thread Development Team
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  *
6  * Change Logs:
7  * Date           Author       Notes
8  * 2010-02-06     Bernard      Add elm_init function declaration
9  */
10 
11 #ifndef __DFS_ELM_H__
12 #define __DFS_ELM_H__
13 
14 #ifdef __cplusplus
15 extern "C" {
16 #endif
17 
18 int elm_init(void);
19 
20 #ifdef __cplusplus
21 }
22 #endif
23 
24 #endif
25