20 lines
389 B
C
Raw Normal View History

2024-08-05 20:57:09 +08:00
/*
* Copyright (c) 2006-2020, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2020/08/21 ShaoJinchun firset version
*/
#ifndef __DFS_CROMFS_H__
#define __DFS_CROMFS_H__
2025-03-14 11:04:51 +08:00
#include <stdint.h>
2024-08-05 20:57:09 +08:00
int dfs_cromfs_init(void);
2025-03-14 11:04:51 +08:00
uint8_t *cromfs_get_partition_data(uint32_t *len);
2024-08-05 20:57:09 +08:00
#endif /*__DFS_CROMFS_H__*/