aboutsummaryrefslogtreecommitdiff
path: root/include/ms_glob.h
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-08-19 16:37:13 +0200
committerCharles Cabergs <me@cacharle.xyz>2020-08-19 16:37:13 +0200
commit957434ecd3c8170aafc145263b0090863ceadba3 (patch)
tree5a218179d7c282a87564dbf6eb89beb603c3385b /include/ms_glob.h
parente77b1667e23a05f2874f80f5e47e634c58180c37 (diff)
downloadminishell-957434ecd3c8170aafc145263b0090863ceadba3.tar.gz
minishell-957434ecd3c8170aafc145263b0090863ceadba3.tar.bz2
minishell-957434ecd3c8170aafc145263b0090863ceadba3.zip
Removing glob, Rewritting preprocessing with escape and interpolation only
Diffstat (limited to 'include/ms_glob.h')
-rw-r--r--include/ms_glob.h36
1 files changed, 0 insertions, 36 deletions
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 <charles.cabergs@gmail.com> +#+ +:+ +#+ */
-/* +#+#+#+#+#+ +#+ */
-/* 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 <dirent.h>
-# include <unistd.h>
-# include <stddef.h>
-# include <limits.h>
-
-# 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