diff options
-rw-r--r-- | src/p_args.c | 1 | ||||
-rw-r--r-- | src/p_lcom_next.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/src/p_args.c b/src/p_args.c index b449ba3..383700f 100644 --- a/src/p_args.c +++ b/src/p_args.c @@ -168,7 +168,6 @@ char while (redir > 0 && ft_isdigit(word[i]) == TRUE) i--; word[i] = C_NUL; - ft_printf("[%s]\n", word); if ((words = p_split_words_no_rdr(word)) == NULL) return (NULL); return (words); diff --git a/src/p_lcom_next.c b/src/p_lcom_next.c index 2f675f3..dc834a8 100644 --- a/src/p_lcom_next.c +++ b/src/p_lcom_next.c @@ -45,7 +45,6 @@ static char word = ft_nrealloc(word, i, i + ft_strlen(varval) + ft_strlen(tmp) + 1); ft_strlcpy(word + i, varval, ft_strlen(varval) + 1); ft_strlcpy(word + (i + ft_strlen(varval)), tmp, ft_strlen(tmp) + 1); - ft_printf("[%s]\n", word); *(p) = word + (i + ft_strlen(varval) - 1); return (word); } |