This commit is contained in:
Nathan Lebrun
2025-01-31 18:57:58 +01:00
parent 3fd862f171
commit 1c643b7119
9 changed files with 224 additions and 104 deletions

View File

@@ -12,7 +12,7 @@
#include "ast.h"
void add_nodell(t_nodell **nodell, t_node *node)
static void add_nodell(t_nodell **nodell, t_node *node)
{
t_nodell *tmp;
@@ -31,7 +31,7 @@ void add_nodell(t_nodell **nodell, t_node *node)
tmp->next->next = NULL;
}
t_node *get_node(t_node **lst, char *expected)
static t_node *get_node(t_node **lst, char *expected)
{
t_node *node;