27 lines
1.2 KiB
C
27 lines
1.2 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* builtins.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/03/27 13:41:30 by cchauvet #+# #+# */
|
|
/* Updated: 2023/04/05 12:16:50 by erey-bet ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef BUILTINS_H
|
|
# define BUILTINS_H
|
|
# include "../libftx/libft/list.h"
|
|
|
|
int echo(int fd, char **strs);
|
|
int pwd(int fd);
|
|
char *get_pwd(int fd);
|
|
int print_env(t_list **env, int fd);
|
|
int ft_export(t_list **env, char **args, int fd);
|
|
int move_folder(char **args, int fd);
|
|
int unset(t_list **env, char **args, int fd);
|
|
int ft_exit(char **args, int err);
|
|
|
|
#endif
|