From a0ba5acfc412f1e684bf6aa56353d682c715394c Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Fri, 2 Oct 2020 21:12:28 +0200 Subject: Update --- src/p_lblock_next.c | 20 -------------------- 1 file changed, 20 deletions(-) (limited to 'src/p_lblock_next.c') diff --git a/src/p_lblock_next.c b/src/p_lblock_next.c index 03d7f80..d964f11 100644 --- a/src/p_lblock_next.c +++ b/src/p_lblock_next.c @@ -191,26 +191,6 @@ size_t p_subst_alias(char word[], t_bool reset, t_msh *msh) return (0); } -char **p_subst_home(char *words[], t_msh *msh) -{ - char path[PATH_MAX]; - char **ptr; - - u_get_var_value(path, "$HOME", PATH_MAX, msh); - if (path[0] == C_NUL) - return (words); - ptr = words; - while (*ptr != NULL) - { - if (*ptr[0] == '~') - { - *ptr = ft_strsubst(*ptr, "~", path); - } - ptr++; - } - return (words); -} - static char **p_alloc_rewords(char *words[], int64_t j, t_msh *msh) { char **rewords; -- cgit v1.2.3