[FIX] fixed the cd builtin

This commit is contained in:
joris schaft 2024-06-28 11:24:29 +02:00
parent a0f6ecb7a6
commit d72d88bded
5 changed files with 64 additions and 29 deletions

View file

@ -6,7 +6,7 @@
/* By: jschaft <cecile.schaft@orange.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/23 14:15:12 by mcolonna #+# #+# */
/* Updated: 2024/06/25 13:31:08 by jschaft ### ########.fr */
/* Updated: 2024/06/27 14:36:14 by jschaft ### ########.fr */
/* */
/* ************************************************************************** */
@ -24,5 +24,6 @@ int exec_builtin(t_call call, char *const envp[]);
// Execute echo builtin
int echo_builtin(const char **argv);
int cd_builtin(char *const *path, char *const envp[]);
#endif