Change -cp option to -ci ("copy in").
[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 extern bool fsutil_dump_filesys;
13
14 void fsutil_run (void);
15 void fsutil_print (const char *filename);
16
17 #endif /* filesys/fsutil.h */