aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-09-09 14:21:13 +0200
committerCharles Cabergs <me@cacharle.xyz>2020-09-09 14:21:13 +0200
commitea2199c8805b5db5b31c46d0c5feb37f607a8394 (patch)
treebb57667c6392f3bdb25bee7ea2260dd26b24f859 /include
parent283778a44b07ca56695ef6a878a0d5cc5393e237 (diff)
downloadminishell-ea2199c8805b5db5b31c46d0c5feb37f607a8394.tar.gz
minishell-ea2199c8805b5db5b31c46d0c5feb37f607a8394.tar.bz2
minishell-ea2199c8805b5db5b31c46d0c5feb37f607a8394.zip
Fixing parenthesis redirection, Added better prompt
Diffstat (limited to 'include')
-rw-r--r--include/minishell.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/minishell.h b/include/minishell.h
index 4bcd681..573ac29 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/08/27 20:34:44 by charles ### ########.fr */
+/* Updated: 2020/09/09 14:04:00 by charles ### ########.fr */
/* */
/* ************************************************************************** */
@@ -136,7 +136,6 @@ int utils_directory_iter(
size_t utils_var_end(char *name);
bool utils_valid_identifier(char *name);
bool utils_start_with_valid_identifier(char *name);
-
-void print_prompt(void);
+void print_prompt(void);
#endif