Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.57 KB | None | 0 0
  1. typedef enum {red, green, blue, none} color;
  2. typedef struct Fichier Fichier;
  3.  
  4. void cls();
  5. void printc(char *format, char *string, color c);
  6. void wait(int second);
  7. void auth();
  8. void help();
  9. void ls(Fichier *pwd);
  10. void cd(char *arg, Fichier **ppwd, Fichier *proot);
  11. void cat(Fichier *pwd, char *arg);
  12. void exec(Fichier *pwd, char *arg);
  13. int split(char *chaine, char **argv, char *delim);
  14. int saisie_commande(Fichier **ppwd, Fichier *proot);
  15. void nouveau_fichier(Fichier *pfichier, int type, char nom[], Fichier *pparent);
  16. void set_env(Fichier **ppwd, Fichier *proot);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement