From 957434ecd3c8170aafc145263b0090863ceadba3 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Wed, 19 Aug 2020 16:37:13 +0200 Subject: Removing glob, Rewritting preprocessing with escape and interpolation only --- include/ms_glob.h | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 include/ms_glob.h (limited to 'include/ms_glob.h') diff --git a/include/ms_glob.h b/include/ms_glob.h deleted file mode 100644 index e340c45..0000000 --- a/include/ms_glob.h +++ /dev/null @@ -1,36 +0,0 @@ -/* ************************************************************************** */ -/* */ -/* ::: :::::::: */ -/* ms_glob.h :+: :+: :+: */ -/* +:+ +:+ +:+ */ -/* By: charles +#+ +:+ +#+ */ -/* +#+#+#+#+#+ +#+ */ -/* Created: 2020/04/05 11:45:11 by charles #+# #+# */ -/* Updated: 2020/07/15 12:12:22 by charles ### ########.fr */ -/* */ -/* ************************************************************************** */ - -#ifndef MS_GLOB_H -# define MS_GLOB_H - -# include -# include -# include -# include - -# include "libft_str.h" -# include "libft_vec.h" - -# include "minishell.h" - -struct s_glob_param -{ - char *pattern; - t_ftvec *matches; -}; - -t_ftvec *glob_matches(char *pattern); -char *ms_glob(char *pattern); -char *ms_globf(char *pattern); - -#endif -- cgit