skip parentesis fix

This commit is contained in:
gazhonsepaskwa
2025-02-14 11:00:37 +01:00
parent 93b69e815f
commit 459862d0a5
3 changed files with 18 additions and 13 deletions

View File

@@ -20,6 +20,7 @@ t_node *remove_parentheses(t_node *lst)
char *str;
out = NULL;
str = NULL;
it = lst;
it = it->next;
deepness = 1;
@@ -36,7 +37,7 @@ t_node *remove_parentheses(t_node *lst)
free(str);
it = it->next;
}
free(str);
// ft_free(&str);
return (out);
}