Get rid of file system "dump" operations because they weren't useful
[pintos-anon] / src / filesys / fsutil.h
index b37c5b6217c9c00d98662b17742d0a7468df4204..307e37d1d1ce791638a245fd3915c52270d0837d 100644 (file)
@@ -1,15 +1,16 @@
-#ifndef HEADER_FSUTIL_H
-#define HEADER_FSUTIL_H 1
+#ifndef FILESYS_FSUTIL_H
+#define FILESYS_FSUTIL_H
 
 #include <stdbool.h>
 
-extern char *fsutil_copy_arg;
+extern char *fsutil_copyin_file;
+extern int fsutil_copyin_size;
+extern char *fsutil_copyout_file;
 extern char *fsutil_print_file;
 extern char *fsutil_remove_file;
 extern bool fsutil_list_files;
-extern bool fsutil_dump_filesys;
 
 void fsutil_run (void);
 void fsutil_print (const char *filename);
 
-#endif /* fsutil.h */
+#endif /* filesys/fsutil.h */