Change char * as it is easier to understand
authorLukas Jiriste <ljiriste@student.42prague.com>
Fri, 14 Jun 2024 08:30:59 +0000 (10:30 +0200)
committerLukas Jiriste <ljiriste@student.42prague.com>
Fri, 14 Jun 2024 08:30:59 +0000 (10:30 +0200)
inc/parsing.h

index b96937f5799cebb451c9cb0e02d1b83ebf853d85..53c11815f429f489b47b45ebd9f75bf127943c66 100644 (file)
@@ -6,7 +6,7 @@
 /*   By: ljiriste <marvin@42.fr>                    +#+  +:+       +#+        */
 /*                                                +#+#+#+#+#+   +#+           */
 /*   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