1 /*
2  * Copyright (c) 2006-2020, RT-Thread Development Team
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  *
6  * Change Logs:
7  * Date           Author       Notes
8  * 2020/08/21     ShaoJinchun  firset version
9  */
10 
11 #ifndef  __DFS_CROMFS_H__
12 #define  __DFS_CROMFS_H__
13 
14 #include <stdint.h>
15 
16 int dfs_cromfs_init(void);
17 uint8_t *cromfs_get_partition_data(uint32_t *len);
18 
19 #endif  /*__DFS_CROMFS_H__*/
20