Started from buttom go to the sky
This commit is contained in:
parent
96215449bd
commit
f811e55dea
4781 changed files with 10121 additions and 1743 deletions
29
parser/static/create/create_lex_normal.c
Normal file
29
parser/static/create/create_lex_normal.c
Normal 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 */
|
||||
Loading…
Add table
Add a link
Reference in a new issue