lfs_port.h 221 B

12345678910111213141516171819
  1. #ifndef LFS_PORT_H
  2. #define LFS_PORT_H
  3. // variables used by the filesystem
  4. #include "lfs.h"
  5. #ifdef __cplusplus
  6. extern "C"
  7. {
  8. #endif
  9. // Initialize
  10. int LFS_Init(void);
  11. #ifdef __cplusplus
  12. } /* extern "C" */
  13. #endif
  14. #endif