This commit is contained in:
Loic Deridder
2025-01-16 14:42:38 +01:00
parent 0bf69437bb
commit 583b3e034a
8 changed files with 199 additions and 18 deletions

View File

@@ -16,6 +16,8 @@ void builtin_exit(char *arg, bool depth);
void builtin_pwd(char *arg);
void builtin_env(char *str, char **envp);
void builtin_unset(char *str, char **envp);
char **builtin_cd(char **arg, char **envp);
char **builtin_export(char **arg, char **envp);
//UTILS
int count_char(char *str);