0030a2d396
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1243 bbd45198-f89e-11dd-88c7-29a3b14d5316
31 lines
805 B
C
31 lines
805 B
C
/*
|
|
+------------------------------------------------------------------------------
|
|
| Project : Device Filesystem
|
|
+------------------------------------------------------------------------------
|
|
| Copyright 2010
|
|
| All rights reserved.
|
|
|------------------------------------------------------------------------------
|
|
| File : dfs_uffs.h
|
|
|------------------------------------------------------------------------------
|
|
| Chang Logs:
|
|
| Date Author Notes
|
|
| 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
|
|
|