dfs_uffs.h 855 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. +------------------------------------------------------------------------------
  3. | Project : Device Filesystem
  4. +------------------------------------------------------------------------------
  5. | Copyright 2010
  6. | All rights reserved.
  7. |------------------------------------------------------------------------------
  8. | File : dfs_uffs.h
  9. |------------------------------------------------------------------------------
  10. | Chang Logs:
  11. | Date Author Notes
  12. | 2010-09-02 Bernard The first version.
  13. | 2010-12-24 amsl Add dfs_uffs_init function declaration
  14. +------------------------------------------------------------------------------
  15. */
  16. #ifndef __DFS_UFFS_H__
  17. #define __DFS_UFFS_H__
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21. int dfs_uffs_init(void);
  22. #ifdef __cplusplus
  23. }
  24. #endif
  25. #endif