diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-07-17 14:09:10 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-07-18 08:57:19 +0200 |
| commit | bd8f652de51395fb26659f7a634e55bd46917b2e (patch) | |
| tree | b8e0d746e180ebfe716815540dc553a0487c8116 /include/minishell.h | |
| parent | 134e5ca4fe0a1051fb7946874953608894959a13 (diff) | |
| download | minishell-bd8f652de51395fb26659f7a634e55bd46917b2e.tar.gz minishell-bd8f652de51395fb26659f7a634e55bd46917b2e.tar.bz2 minishell-bd8f652de51395fb26659f7a634e55bd46917b2e.zip | |
Fixing exit error message and overflow detection
Diffstat (limited to 'include/minishell.h')
| -rw-r--r-- | include/minishell.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/minishell.h b/include/minishell.h index aebfbf2..3406041 100644 --- a/include/minishell.h +++ b/include/minishell.h @@ -6,7 +6,7 @@ /* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/26 15:33:51 by cacharle #+# #+# */ -/* Updated: 2020/07/16 09:17:45 by charles ### ########.fr */ +/* Updated: 2020/07/17 11:17:16 by charles ### ########.fr */ /* */ /* ************************************************************************** */ @@ -89,6 +89,7 @@ typedef struct { char *name; t_builtin_func func; + bool forked; } t_builtin_entry; t_builtin_entry *builtin_search_func(char *name); |
