update: fixed env -i issue

This commit is contained in:
Maieul BOYER 2024-10-14 13:59:07 +02:00
parent 7e16ea3fe0
commit 7b9009b820
No known key found for this signature in database
2 changed files with 32 additions and 26 deletions

View file

@ -6,7 +6,7 @@
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/09/14 12:26:51 by maiboyer #+# #+# */
/* Updated: 2024/10/13 17:30:06 by maiboyer ### ########.fr */
/* Updated: 2024/10/14 12:34:25 by maiboyer ### ########.fr */
/* */
/* ************************************************************************** */
@ -21,26 +21,6 @@ t_error _word_handle_star(t_ast_word *word, t_state *state, t_vec_str *out);
t_error list_files_in_current_directory(t_vec_str *out);
t_error _word_into_str_inner(struct s_word_str_args args);
t_error _word_no_quote(t_state *state, t_word_result *res, t_vec_str *append)
{
t_string tmp;
t_usize i;
tmp = string_new(64);
i = 0;
while (i < res->value.len)
{
if (!res->value.buffer[i].do_expand)
string_push(&tmp, res->value.buffer[i].value);
else if (_word_into_str_inner((struct s_word_str_args){i, \
state, &tmp, res, append, NULL, NULL, NULL}))
return (ERROR);
i++;
}
vec_str_push(append, tmp.buf);
return (NO_ERROR);
}
t_error _word_pass_quote(t_state *state, t_word_result *res, t_vec_str *append)
{
t_string tmp;