Updated grammar

This commit is contained in:
Maix0 2024-07-02 21:01:18 +02:00
parent dcdefc2ac3
commit 63e1d5d05f
1136 changed files with 81301 additions and 91678 deletions

View file

@ -1,29 +0,0 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* create_lex_keywords.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_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

@ -1,29 +0,0 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* create_lex_normal.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_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 */