Files
42_INT_07_minishell/srcs/builtins/cd.c
LuckyLaszlo 3baf91afb3 replaced occurrences of last exit_status
+ deleted envp comments
+ WIP Macro exit status
+ TODO : Invalid free of environ in readline
2021-11-27 12:59:16 +01:00

13 lines
233 B
C

#include "minishell.h"
int builtin_cd(int argc, char *argv[], t_all *c)
{
(void)argc;
chdir(argv[1]);
c->prompt = init_prompt(c->prompt_base);
if (!c->prompt)
return (ft_reti_perror(0, "init_prompt() error"));
return (0);
}