mirror of
https://github.com/marqs85/ossc
synced 2025-06-16 16:29:43 +03:00
15 lines
371 B
C
15 lines
371 B
C
#ifndef FILE_H_
|
|
#define FILE_H_
|
|
|
|
#include "ff.h"
|
|
#include "sysconfig.h"
|
|
|
|
FRESULT file_mount();
|
|
FRESULT file_open(FIL* fil, char* path);
|
|
FRESULT file_close(FIL* fil);
|
|
TCHAR* file_get_string(FIL* fil, char* buff, int len);
|
|
FRESULT scan_files (char* path);
|
|
int find_files_exec(char* path, char* pat, FILINFO *fno, int efirst, int elast, void (*func)(FILINFO *fno));
|
|
|
|
#endif
|