Get rid of file system "dump" operations because they weren't useful
[pintos-anon] / src / filesys / fsutil.h
1 #ifndef FILESYS_FSUTIL_H
2 #define FILESYS_FSUTIL_H
3
4 #include <stdbool.h>
5
6 extern char *fsutil_copyin_file;
7 extern int fsutil_copyin_size;
8 extern char *fsutil_copyout_file;
9 extern char *fsutil_print_file;
10 extern char *fsutil_remove_file;
11 extern bool fsutil_list_files;
12
13 void fsutil_run (void);
14 void fsutil_print (const char *filename);
15
16 #endif /* filesys/fsutil.h */