mirror of
https://github.com/KeyZox71/ft_minipowershell.git
synced 2025-03-15 11:26:51 +01:00
22 lines
1019 B
C
22 lines
1019 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* builtins.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/06/22 13:05:18 by adjoly #+# #+# */
|
|
/* Updated: 2024/06/24 12:47:28 by adjoly ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef BUILTINS_H
|
|
# define BUILTINS_H
|
|
|
|
#include "env.h"
|
|
|
|
void ft_pwd(t_env *env);
|
|
void ft_cd(t_env *env, char *args);
|
|
|
|
#endif
|