This commit is contained in:
Loic Deridder
2025-02-10 13:38:01 +01:00
parent c102a6884c
commit a79227453c
7 changed files with 152 additions and 7 deletions

View File

@@ -6,7 +6,7 @@
/* By: lderidde <lderidde@student.s19.be> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/02/07 10:21:00 by lderidde #+# #+# */
/* Updated: 2025/02/08 10:52:24 by lderidde ### ########.fr */
/* Updated: 2025/02/10 10:40:51 by lderidde ### ########.fr */
/* */
/* ************************************************************************** */
@@ -14,9 +14,14 @@
# define EXPANDER_H
# include "../minishell.h"
# include <sys/types.h>
# include <dirent.h>
int in_dquote(char *str, char *ch);
int in_squote(char *str, char *ch);
int expand_var(t_ast_n *node, int j);
int expand_tilde(t_ast_n *node, int j);
int expand_star(t_ast_n *node, int j);
t_ast_n *expand_node(t_ast_n *node);
#endif