Advertisement
colle

Untitled

Mar 29th, 2013
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.46 KB | None | 0 0
  1. #include "filesystem-datastructure.h"
  2.  
  3. void mkfs(Filesystem *files);
  4. int touch(Filesystem *files, const char arg[]);
  5. int mkdir(Filesystem *files, const char arg[]);
  6. int cd(Filesystem *files, const char arg[]);
  7. int ls(Filesystem *files, const char arg[]);
  8. void pwd(Filesystem *files);
  9. void rmfs(Filesystem *files);
  10. int rm(Filesystem *files, const char arg[]);
  11. int addline(Filesystem *files, const char arg[]);
  12. int cat(Filesystem *files, const char arg[]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement