aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDominik Kaiser2025-01-14 18:20:33 +0100
committerDominik Kaiser2025-01-14 18:20:33 +0100
commit3e692dac63577011bd5862a66767ef412183f26b (patch)
treec62096c34058d794311ac975c6611aad20f2e1a0 /include
parent8c37f835ba29bcecc1d779edb396d97b18667026 (diff)
downloadminishell-3e692dac63577011bd5862a66767ef412183f26b.tar.gz
minishell-3e692dac63577011bd5862a66767ef412183f26b.zip
Some changes
Diffstat (limited to 'include')
-rw-r--r--include/minishell.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/minishell.h b/include/minishell.h
index 028a4fc..f0f458b 100644
--- a/include/minishell.h
+++ b/include/minishell.h
@@ -6,7 +6,7 @@
/* By: chuhlig <chuhlig@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/22 17:14:49 by dkaiser #+# #+# */
-/* Updated: 2025/01/11 16:05:11 by chuhlig ### ########.fr */
+/* Updated: 2025/01/14 14:52:29 by dkaiser ### ########.fr */
/* */
/* ************************************************************************** */
@@ -40,6 +40,6 @@ int eval(t_node *node, t_env **env);
char *get_cmd_path(char *cmd, t_env *env);
int execute_cmd(t_cmd *cmd, t_env **env);
char *format_string(char *str, t_env *env);
-
+int set_return_code(int return_code, t_env **env);
#endif