altered env. Added dummy function for cd, echo, setenv & unsetenv Started work on env copy feature
21 lines
1000 B
C
21 lines
1000 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* cmd_setenv.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2019/09/20 14:41:08 by tmaze #+# #+# */
|
|
/* Updated: 2019/09/20 14:43:47 by tmaze ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "minishell.h"
|
|
|
|
int cmd_setenv(char** argv, t_list** env)
|
|
{
|
|
(void)argv;
|
|
(void)env;
|
|
return (0);
|
|
}
|