24 new_node->
next = NULL;
31 while (curr_node->
next != NULL)
32 curr_node = curr_node->
next;
33 curr_node->
next = new_node;
42 current_node = *stack;
43 while (current_node != NULL)
46 current_node = current_node->
next;
57 while (current != NULL)
72 while (current != NULL)
75 current = current->
next;
89 arr = (
char **)malloc((count + 1) *
sizeof(
char *));
97 current = current->
next;
int ft_printf(const char *format,...)
char * ft_strdup(const char *s)
char ** list_to_array(t_token *head)
int calc_stack_size(t_token *stack)
void add_node(t_token **head, char *str)
void free_stack(t_token **stack)
void print_stack(t_token **stack)