Update: Added Parser and Stdme
This commit is contained in:
parent
78f0707574
commit
89d1381121
4476 changed files with 626947 additions and 9 deletions
30
shcat_c/parser/src/create/create_parse_actions_entries.c
Normal file
30
shcat_c/parser/src/create/create_parse_actions_entries.c
Normal 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/14 19:18:20 by maiboyer ### ########.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 */
|
||||
Loading…
Add table
Add a link
Reference in a new issue