From: Lukas Jiriste Date: Fri, 14 Jun 2024 08:30:59 +0000 (+0200) Subject: Change char * as it is easier to understand X-Git-Url: https://git.ljiriste.work/?a=commitdiff_plain;h=da98048b99af1195271a2f5abc4f532ce1df774f;p=42%2Fminishell.git Change char * as it is easier to understand --- diff --git a/inc/parsing.h b/inc/parsing.h index b96937f..53c1181 100644 --- a/inc/parsing.h +++ b/inc/parsing.h @@ -6,7 +6,7 @@ /* By: ljiriste +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/05/03 15:24:31 by ljiriste #+# #+# */ -/* Updated: 2024/05/03 16:20:14 by ljiriste ### ########.fr */ +/* Updated: 2024/06/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