CS318 - Pintos
Pintos source browser for JHU CS318 course
fsutil.h
Go to the documentation of this file.
1 #ifndef FILESYS_FSUTIL_H
2 #define FILESYS_FSUTIL_H
3 
4 void fsutil_ls (char **argv);
5 void fsutil_cat (char **argv);
6 void fsutil_rm (char **argv);
7 void fsutil_extract (char **argv);
8 void fsutil_append (char **argv);
9 
10 #endif /**< filesys/fsutil.h */
fsutil_append
void fsutil_append(char **argv)
filesys/fsutil.h
Definition: fsutil.c:167
fsutil_rm
void fsutil_rm(char **argv)
Deletes file ARGV[1].
Definition: fsutil.c:61
fsutil_extract
void fsutil_extract(char **argv)
fsutil_ls
void fsutil_ls(char **argv)
fsutil_cat
void fsutil_cat(char **argv)
Prints the contents of file ARGV[1] to the system console as hex and ASCII.
Definition: fsutil.c:34