/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* create_small_parse_table_map.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: maiboyer +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/04/14 19:17:54 by maiboyer #+# #+# */ /* Updated: 2024/04/28 18:19:01 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ #include "../types/type_small_parse_table_map.h" #include "../small_parse_table_map/small_parse_table_map.h" t_small_parse_table_map_array *create_small_parse_table_map(void) { static t_small_parse_table_map_array table = {}; static bool init = false; if (!init) { small_parse_table_map_0(&table); init = true; } return (&table); } /* create_small_parse_table_map.c */