Started from buttom go to the sky

This commit is contained in:
Raphaël 2024-04-28 19:59:01 +02:00
parent 96215449bd
commit f811e55dea
4781 changed files with 10121 additions and 1743 deletions

View file

@ -0,0 +1,29 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* create_alias_sequences.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/14 19:17:54 by maiboyer #+# #+# */
/* Updated: 2024/04/28 18:14:24 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include "../types/type_alias_sequences.h"
#include "../alias_sequences/alias_sequences.h"
t_alias_sequences_array *create_alias_sequences(void)
{
static t_alias_sequences_array table = {};
static bool init = false;
if (!init)
{
alias_sequences_0(&table);
init = true;
}
return (&table);
}
/* create_alias_sequences.c */

View file

@ -0,0 +1,29 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* create_external_scanner_states.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/14 19:17:54 by maiboyer #+# #+# */
/* Updated: 2024/04/28 18:14:41 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include "../types/type_external_scanner_states.h"
#include "../external_scanner_states/external_scanner_states.h"
t_external_scanner_states_array *create_external_scanner_states(void)
{
static t_external_scanner_states_array table = {};
static bool init = false;
if (!init)
{
external_scanner_states_0(&table);
init = true;
}
return (&table);
}
/* create_external_scanner_states.c */

View file

@ -0,0 +1,29 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* create_external_scanner_symbol_map.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/14 19:17:54 by maiboyer #+# #+# */
/* Updated: 2024/04/28 18:15:37 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include "../types/type_external_scanner_symbol_map.h"
#include "../external_scanner_symbol_map/external_scanner_symbol_map.h"
t_external_scanner_symbol_map_array *create_external_scanner_symbol_map(void)
{
static t_external_scanner_symbol_map_array table = {};
static bool init = false;
if (!init)
{
external_scanner_symbol_map_0(&table);
init = true;
}
return (&table);
}
/* create_external_scanner_symbol_map.c */

View file

@ -0,0 +1,29 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* create_field_map_entries.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/14 19:17:54 by maiboyer #+# #+# */
/* Updated: 2024/04/28 18:14:55 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include "../types/type_field_map_entries.h"
#include "../field_map_entries/field_map_entries.h"
t_field_map_entries_array *create_field_map_entries(void)
{
static t_field_map_entries_array table = {};
static bool init = false;
if (!init)
{
field_map_entries_0(&table);
init = true;
}
return (&table);
}
/* create_field_map_entries.c */

View file

@ -0,0 +1,29 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* create_field_map_slices.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/14 19:17:54 by maiboyer #+# #+# */
/* Updated: 2024/04/28 18:20:21 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include "../types/type_field_map_slices.h"
#include "../field_map_slices/field_map_slices.h"
t_field_map_slices_array *create_field_map_slices(void)
{
static t_field_map_slices_array table = {};
static bool init = false;
if (!init)
{
field_map_slices_0(&table);
init = true;
}
return (&table);
}
/* create_field_map_slices.c */

View file

@ -0,0 +1,29 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* create_field_names.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/14 19:17:54 by maiboyer #+# #+# */
/* Updated: 2024/04/28 18:15:08 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include "../types/type_field_names.h"
#include "../field_names/field_names.h"
t_field_names_array *create_field_names(void)
{
static t_field_names_array table = {};
static bool init = false;
if (!init)
{
field_names_0(&table);
init = true;
}
return (&table);
}
/* create_field_names.c */

View file

@ -0,0 +1,29 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* create_lex_keywords.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/14 19:17:54 by maiboyer #+# #+# */
/* Updated: 2024/04/28 18:15:20 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include "../types/type_lex_keywords.h"
#include "../lex_funcs/lex_keywords/create_table/lex_keywords_array.h"
t_lex_keywords_array *create_lex_keywords(void)
{
static t_lex_keywords_array table = {};
static bool init = false;
if (!init)
{
lex_keywords_array_0(&table);
init = true;
}
return (&table);
}
/* create_lex_keywords.c */

View file

@ -0,0 +1,29 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* create_lex_modes.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/14 19:17:54 by maiboyer #+# #+# */
/* Updated: 2024/04/28 18:16:46 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include "../types/type_lex_modes.h"
#include "../lex_modes/lex_modes.h"
t_lex_modes_array *create_lex_modes(void)
{
static t_lex_modes_array table = {};
static bool init = false;
if (!init)
{
lex_modes_0(&table);
init = true;
}
return (&table);
}
/* create_lex_modes.c */

View file

@ -0,0 +1,29 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* create_lex_normal.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/14 19:17:54 by maiboyer #+# #+# */
/* Updated: 2024/04/28 18:17:22 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include "../types/type_lex_normal.h"
#include "../lex_funcs/lex_normal/create_table/lex_normal_array.h"
t_lex_normal_array *create_lex_normal(void)
{
static t_lex_normal_array table = {};
static bool init = false;
if (!init)
{
lex_normal_array_0(&table);
init = true;
}
return (&table);
}
/* create_lex_normal.c */

View file

@ -0,0 +1,29 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* create_non_terminal_alias_map.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/14 19:17:54 by maiboyer #+# #+# */
/* Updated: 2024/04/28 18:17:43 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include "../types/type_non_terminal_alias_map.h"
#include "../non_terminal_alias_map/non_terminal_alias_map.h"
t_non_terminal_alias_map_array *create_non_terminal_alias_map(void)
{
static t_non_terminal_alias_map_array table = {};
static bool init = false;
if (!init)
{
non_terminal_alias_map_0(&table);
init = true;
}
return (&table);
}
/* create_non_terminal_alias_map.c */

View file

@ -0,0 +1,30 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* create_parse_actions_entries.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/14 19:17:54 by maiboyer #+# #+# */
/* Updated: 2024/04/28 18:18:15 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include "../types/type_parse_actions_entries.h"
#include "../types/type_parse_actions_entries.h"
#include "../parse_actions_entries/parse_actions_entries.h"
t_parse_actions_entries_array *create_parse_actions_entries(void)
{
static t_parse_actions_entries_array table = {};
static bool init = false;
if (!init)
{
parse_actions_entries_0(&table);
init = true;
}
return (&table);
}
/* create_parse_actions_entries.c */

View file

@ -0,0 +1,29 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* create_parse_table.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/14 19:17:54 by maiboyer #+# #+# */
/* Updated: 2024/04/28 18:17:06 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include "../types/type_parse_table.h"
#include "../parse_table/parse_table.h"
t_parse_table_array *create_parse_table(void)
{
static t_parse_table_array table = {};
static bool init = false;
if (!init)
{
parse_table_0(&table);
init = true;
}
return (&table);
}
/* create_parse_table.c */

View file

@ -0,0 +1,29 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* create_primary_state_ids.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/14 19:17:54 by maiboyer #+# #+# */
/* Updated: 2024/04/28 18:18:30 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include "../types/type_primary_state_ids.h"
#include "../primary_state_ids/primary_state_ids.h"
t_primary_state_ids_array *create_primary_state_ids(void)
{
static t_primary_state_ids_array table = {};
static bool init = false;
if (!init)
{
primary_state_ids_0(&table);
init = true;
}
return (&table);
}
/* create_primary_state_ids.c */

View file

@ -0,0 +1,29 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* create_small_parse_table.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/14 19:17:54 by maiboyer #+# #+# */
/* Updated: 2024/04/28 18:18:48 by rparodi ### ########.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 */

View file

@ -0,0 +1,29 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* create_small_parse_table_map.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* 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 */

View file

@ -0,0 +1,29 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* create_symbols_metadata.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/14 19:17:54 by maiboyer #+# #+# */
/* Updated: 2024/04/28 18:19:14 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include "../types/type_symbols_metadata.h"
#include "../symbols_metadata/symbols_metadata.h"
t_symbols_metadata_array *create_symbols_metadata(void)
{
static t_symbols_metadata_array table = {};
static bool init = false;
if (!init)
{
symbols_metadata_0(&table);
init = true;
}
return (&table);
}
/* create_symbols_metadata.c */

View file

@ -0,0 +1,29 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* create_symbols_names.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/14 19:17:54 by maiboyer #+# #+# */
/* Updated: 2024/04/28 18:19:25 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include "../types/type_symbols_names.h"
#include "../symbols_names/symbols_names.h"
t_symbols_names_array *create_symbols_names(void)
{
static t_symbols_names_array table = {};
static bool init = false;
if (!init)
{
symbols_names_0(&table);
init = true;
}
return (&table);
}
/* create_symbols_names.c */

View file

@ -0,0 +1,29 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* create_unique_symbols_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_unique_symbols_map.h"
#include "../unique_symbols_map/unique_symbols_map.h"
t_unique_symbols_map_array *create_unique_symbols_map(void)
{
static t_unique_symbols_map_array table = {};
static bool init = false;
if (!init)
{
unique_symbols_map_0(&table);
init = true;
}
return (&table);
}
/* create_unique_symbols_map.c */