aboutsummaryrefslogtreecommitdiff
path: root/include/minishell.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/minishell.h')
-rw-r--r--include/minishell.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/include/minishell.h b/include/minishell.h
index a934bb7..1b23952 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/20 14:45:19 by charles ### ########.fr */
+/* Updated: 2020/08/27 17:18:43 by charles ### ########.fr */
/* */
/* ************************************************************************** */
@@ -37,6 +37,8 @@
# include "libft_vec.h"
# include "libft_dstr.h"
+# include "lexer.h"
+
/*
** \brief Value of pipe entry if closed
*/
@@ -107,8 +109,8 @@ int builtin_exit(char **argv, t_env env);
** preprocess.c
*/
-char **preprocess(t_ftlst **tokens, t_env env);
-char *preprocess_filename(t_ftlst **tokens, t_env env);
+char **preprocess(t_tok_lst **tokens, t_env env);
+char *preprocess_filename(t_tok_lst **tokens, t_env env);
/*
** error.c
@@ -125,6 +127,7 @@ typedef enum
} t_err;
void errorf(const char *format, ...);
+void verrorf(const char *format, va_list ap);
/*
** signal.c