update: normed stuff

This commit is contained in:
maix0 2024-10-06 13:53:30 +02:00
parent 71d9a201b5
commit b058348d35
20 changed files with 388 additions and 193 deletions

View file

@ -6,7 +6,7 @@
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/02 19:04:32 by maiboyer #+# #+# */
/* Updated: 2024/10/04 19:09:45 by rparodi ### ########.fr */
/* Updated: 2024/10/06 13:42:09 by maiboyer ### ########.fr */
/* */
/* ************************************************************************** */
@ -38,7 +38,7 @@ t_error ts_double_amp(t_vec_token input, t_vec_token *output)
if (i + 1 >= input.len)
vec_token_push(&out, token_clone(&input.buffer[i]));
else if (input.buffer[i].type == TOK_AMP
&& input.buffer[i + 1].type == TOK_AMP)
&& input.buffer[i + 1].type == TOK_AMP)
{
vec_token_push(&out, token_new(TOK_AND));
i++;