diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2020-10-09 12:42:31 +0200 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2020-10-09 12:42:31 +0200 |
| commit | eeeeed44a9c7e8bd2f6a579bcace1f90d8a040ec (patch) | |
| tree | 69dff03e1188e168af2ce5b2b7ce6a792999eb4b /include/minishell.h | |
| parent | 6b200dc03c8233f6cd49111540002eb9b5aac4ec (diff) | |
| download | minishell-eeeeed44a9c7e8bd2f6a579bcace1f90d8a040ec.tar.gz minishell-eeeeed44a9c7e8bd2f6a579bcace1f90d8a040ec.tar.bz2 minishell-eeeeed44a9c7e8bd2f6a579bcace1f90d8a040ec.zip | |
Fixing parenthesis leak in parser, Fixing crash on empty input
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 cfc8b42..cba92df 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/10/08 17:42:07 by cacharle ### ########.fr */ +/* Updated: 2020/10/09 12:41:09 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ @@ -139,6 +139,7 @@ void signal_sigterm(int signum); void print_prompt(void); void exit_if(bool predicate); +bool utils_strisblank(char *str); /* ** setup.c |
