Initial filesystem stub code.
[pintos-anon] / src / filesys / filesys.h
1 #ifndef HEADER_FILESYS_H
2 #define HEADER_FILESYS_H 1
3
4 #include <stdbool.h>
5
6 void filesys_init (bool reformat);
7 bool filesys_create (const char *name);
8 struct file *filesys_open (const char *name);
9 bool filesys_remove (const char *name);
10
11 #endif /* filesys.h */