uc-sdk
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
filesystem.h
Go to the documentation of this file.
1 #ifndef __FILESYSTEM_H__
2 #define __FILESYSTEM_H__
3 
4 #include <stdint.h>
5 #include <hash-djb2.h>
6 
7 #define MAX_FS 16
8 
9 typedef int (*fs_open_t)(void * opaque, const char * fname, int flags, int mode);
10 
11 int register_fs(const char * mountpoint, fs_open_t callback, void * opaque);
12 int fs_open(const char * path, int flags, int mode);
13 
14 #endif