create proper header for filesystem util functions

This commit is contained in:
bsx 2011-12-16 22:09:09 +01:00
parent a038463097
commit 0e0f2439be
2 changed files with 11 additions and 0 deletions

View File

@ -12,6 +12,7 @@
#include "filesystem/ff.h"
#include "filesystem/select.h"
#include "filesystem/execute.h"
#include "filesystem/util.h"
#include <string.h>

View File

@ -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 */