aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/ast.h4
-rw-r--r--include/parse.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/include/ast.h b/include/ast.h
index b725c8b..1dd28a1 100644
--- a/include/ast.h
+++ b/include/ast.h
@@ -6,7 +6,7 @@
/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/04/01 17:05:38 by charles #+# #+# */
-/* Updated: 2020/05/04 11:59:43 by charles ### ########.fr */
+/* Updated: 2020/05/14 23:54:46 by charles ### ########.fr */
/* */
/* ************************************************************************** */
@@ -98,7 +98,7 @@ typedef struct s_ast
{
t_line line;
t_cmd cmd;
- } ;
+ };
} t_ast;
t_ast *ast_new(t_ast_tag tag, void *data);
diff --git a/include/parse.h b/include/parse.h
index bc86230..e864f9a 100644
--- a/include/parse.h
+++ b/include/parse.h
@@ -6,7 +6,7 @@
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/28 09:00:00 by cacharle #+# #+# */
-/* Updated: 2020/04/01 17:49:45 by charles ### ########.fr */
+/* Updated: 2020/06/09 10:55:09 by charles ### ########.fr */
/* */
/* ************************************************************************** */
@@ -43,6 +43,6 @@ char **lexer(char *input);
** parse.c
*/
-t_ast *parse(char *input);
+t_ast *parse(char **input);
#endif