create proper header for filesystem util functions
This commit is contained in:
parent
a038463097
commit
0e0f2439be
|
@ -12,6 +12,7 @@
|
|||
#include "filesystem/ff.h"
|
||||
#include "filesystem/select.h"
|
||||
#include "filesystem/execute.h"
|
||||
#include "filesystem/util.h"
|
||||
|
||||
#include <string.h>
|
||||
|
||||
|
|
|
@ -0,0 +1,10 @@
|
|||
#ifndef _UTIL_H
|
||||
#define _UTIL_H 1
|
||||
|
||||
void fsInit();
|
||||
void fsReInit();
|
||||
int readFile(char * filename, char * data, int len);
|
||||
int readTextFile(char * filename, char * data, int len);
|
||||
int writeFile(char * filename, char * data, int len);
|
||||
|
||||
#endif /* _UTIL_H */
|
Loading…
Reference in New Issue