update: added echo builtin

This commit is contained in:
2025-11-02 03:14:43 +01:00
parent 52807ca13c
commit 214d7c24d2
4 changed files with 138 additions and 1 deletions

View File

@@ -6,7 +6,7 @@
/* By: sede-san <sede-san@student.42madrid.com +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/10/29 22:09:51 by sede-san #+# #+# */
/* Updated: 2025/11/01 20:09:41 by sede-san ### ########.fr */
/* Updated: 2025/11/02 03:13:46 by sede-san ### ########.fr */
/* */
/* ************************************************************************** */
@@ -24,6 +24,10 @@
extern u_int8_t builtin_cd(t_command cmd, t_minishell *msh);
// echo.c
extern u_int8_t builtin_echo(t_command cmd);
// exit.c
extern u_int8_t builtin_exit(t_command cmd, t_minishell *msh);