/* By: ljiriste <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/05/03 15:58:55 by ljiriste #+# #+# */
-/* Updated: 2024/08/01 16:10:45 by ljiriste ### ########.fr */
+/* Updated: 2024/08/02 10:25:42 by ljiriste ### ########.fr */
/* */
/* ************************************************************************** */
ft_parsing_table_load(&table, "shell_parsing_table", "shell_rules");
*parse_tree = ft_parse(tokens, &table);
ft_parsing_table_free(&table);
- return (0);
+ return (parse_tree == NULL);
}