6f1e387c14429066484d9b02e558e20462d68dfb
[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 */