forked from LucasKuhn/minishell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathminishell_bonus.h
22 lines (18 loc) · 1.11 KB
/
minishell_bonus.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* minishell_bonus.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: sguilher <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/06/28 18:38:23 by lalex-ku #+# #+# */
/* Updated: 2022/06/29 17:01:30 by sguilher ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef MINISHELL_BONUS_H
# define MINISHELL_BONUS_H
# include "minishell.h"
// Wildcard
void expand_wildcards(char *search, char **input, t_env *minienv);
char *get_wildcard_value(char *wildcard_label, char **input, t_env *minienv);
#endif