diff options
Diffstat (limited to '')
-rw-r--r-- | src/p_lcom_next.c | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/src/p_lcom_next.c b/src/p_lcom_next.c index 28ad821..435a710 100644 --- a/src/p_lcom_next.c +++ b/src/p_lcom_next.c @@ -72,39 +72,6 @@ char } char - **p_subst_args(const char word[], - int8_t redir) -{ - char **words; - - return (words); - /* char **words; */ - /* char *subst; */ - /* size_t i; */ - - /* if (redir == 0) */ - /* { */ - /* if (!(words = ft_split(word, ' '))) */ - /* return (NULL); */ - /* return (words); */ - /* } */ - /* i = 0; */ - /* while (word[i] && ft_ischarset("<>", word[i]) == FALSE) */ - /* i++; */ - /* while (redir > 0 && ft_isdigit(word[i]) == TRUE) */ - /* i--; */ - /* if (!(subst = ft_substr(word, 0, i))) */ - /* return (NULL); */ - /* if (!(words = ft_split(subst, ' '))) */ - /* { */ - /* ft_memdel((void*)&subst); */ - /* return (NULL); */ - /* } */ - /* ft_memdel((void*)&subst); */ - /* return (words); */ -} - -char **p_subst_home(char *words[], t_msh *msh) { |