change exec_builtins prototype

This commit is contained in:
mcolonna 2024-06-25 13:37:50 +02:00
parent 823c5b8ac8
commit 50096be197
3 changed files with 15 additions and 20 deletions

View file

@ -6,7 +6,7 @@
/* By: jschaft <cecile.schaft@orange.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/23 14:15:12 by mcolonna #+# #+# */
/* Updated: 2024/06/25 11:38:41 by jschaft ### ########.fr */
/* Updated: 2024/06/25 13:28:18 by mcolonna ### ########.fr */
/* */
/* ************************************************************************** */
@ -19,6 +19,6 @@
bool is_builtin(const char *str);
// Execute the builtin command
int exec_builtin(t_call call, char *const envp[]);
int exec_builtin(t_call call, t_env *env);
#endif