20 lines
137 B
C
20 lines
137 B
C
#ifndef __FS_H__
|
|
#define __FS_H__
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
void *private_data;
|
|
} FILE;
|
|
|
|
|
|
|
|
#endif /* VFS_ENABLE */
|
|
|
|
|
|
|
|
|
|
|
|
|