/* By: ljiriste <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/05/03 15:58:55 by ljiriste #+# #+# */
-/* Updated: 2024/08/02 14:16:59 by ljiriste ### ########.fr */
+/* Updated: 2024/08/02 17:03:23 by ljiriste ### ########.fr */
/* */
/* ************************************************************************** */
ft_parsing_table_load_str(&table, g_str_table, g_str_rules);
*parse_tree = ft_parse(tokens, &table);
ft_parsing_table_free(&table);
- return (parse_tree == NULL);
+ return (*parse_tree == NULL);
}