/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* builtins.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: sede-san # include // cd.c int cd_builtin(int argc, char const *argv[]); # define CD_HELP // echo.c typedef struct s_echo_flags { int newline; // print newline after everything has been printed } t_echo_flags; int echo_builtin(int argc, char const *argv[]); # define ECHO_HELP // // env.c // int env_builtin(int argc, char const *argv[], char **envp); // exit.c int exit_builtin(int argc, char const *argv[]); # define EXIT_HELP // export.c int export_builtin(int argc, char const *argv[], char **envp); # define EXPORT_HELP // printenv.c int printenv_builtin(int argc, char const *argv[], char const *envp[]); # define PRINTENV_HELP // pwd.c int pwd_builtin(int argc, char const *argv[]); # define PWD_HELP // unset.c int unset_builtin(int argc, char const *argv[], char **envp); # define UNSET_HELP #endif