projects
/
42
/
minishell.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f43778f
)
Change char * as it is easier to understand
author
Lukas Jiriste
<ljiriste@student.42prague.com>
Fri, 14 Jun 2024 08:30:59 +0000
(10:30 +0200)
committer
Lukas Jiriste
<ljiriste@student.42prague.com>
Fri, 14 Jun 2024 08:30:59 +0000
(10:30 +0200)
inc/parsing.h
patch
|
blob
|
history
diff --git
a/inc/parsing.h
b/inc/parsing.h
index b96937f5799cebb451c9cb0e02d1b83ebf853d85..53c11815f429f489b47b45ebd9f75bf127943c66 100644
(file)
--- a/
inc/parsing.h
+++ b/
inc/parsing.h
@@
-6,7
+6,7
@@
/* By: ljiriste <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/05/03 15:24:31 by ljiriste #+# #+# */
-/* Updated: 2024/0
5/03 16:20:14
by ljiriste ### ########.fr */
+/* Updated: 2024/0
6/14 10:30:40
by ljiriste ### ########.fr */
/* */
/* ************************************************************************** */
@@
-178,7
+178,7
@@
typedef enum e_token_type
typedef struct s_token
{
t_token_type type;
-
t_vec
str;
+
char *
str;
} t_token;
typedef struct s_tree_node