Update to not use the small parse table map
This commit is contained in:
parent
531134f575
commit
544711e05c
1022 changed files with 45894 additions and 90152 deletions
|
|
@ -1,29 +0,0 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* create_small_parse_table.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2024/04/14 19:17:54 by maiboyer #+# #+# */
|
||||
/* Updated: 2024/04/14 19:18:20 by maiboyer ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "../types/type_small_parse_table.h"
|
||||
#include "../small_parse_table/small_parse_table.h"
|
||||
|
||||
t_small_parse_table_array *create_small_parse_table(void)
|
||||
{
|
||||
static t_small_parse_table_array table = {};
|
||||
static bool init = false;
|
||||
|
||||
if (!init)
|
||||
{
|
||||
small_parse_table_0(&table);
|
||||
init = true;
|
||||
}
|
||||
return (&table);
|
||||
}
|
||||
|
||||
/* create_small_parse_table.c */
|
||||
|
|
@ -1,29 +0,0 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* create_small_parse_table_map.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2024/04/14 19:17:54 by maiboyer #+# #+# */
|
||||
/* Updated: 2024/04/14 19:18:20 by maiboyer ### ########.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 */
|
||||
Loading…
Add table
Add a link
Reference in a new issue