32 lines
855 B
C
32 lines
855 B
C
/*
|
|
+------------------------------------------------------------------------------
|
|
| Project : Device Filesystem
|
|
+------------------------------------------------------------------------------
|
|
| Copyright 2010
|
|
| All rights reserved.
|
|
|------------------------------------------------------------------------------
|
|
| File : dfs_uffs.h
|
|
|------------------------------------------------------------------------------
|
|
| Chang Logs:
|
|
| Date Author Notes
|
|
| 2010-09-02 Bernard The first version.
|
|
| 2010-12-24 amsl Add dfs_uffs_init function declaration
|
|
+------------------------------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef __DFS_UFFS_H__
|
|
#define __DFS_UFFS_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int dfs_uffs_init(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|