#include "minishell.h" int builtin_cd(int argc, char *argv[], t_all *c) { (void)argc; (void)c; chdir(argv[1]); return (0); }