10 lines
242 B
C
Executable file
10 lines
242 B
C
Executable file
#ifndef FILESYS_FSUTIL_H
|
|
#define FILESYS_FSUTIL_H
|
|
|
|
void fsutil_ls (char **argv);
|
|
void fsutil_cat (char **argv);
|
|
void fsutil_rm (char **argv);
|
|
void fsutil_extract (char **argv);
|
|
void fsutil_append (char **argv);
|
|
|
|
#endif /* filesys/fsutil.h */
|