This commit is contained in:
2024-04-02 13:34:20 +02:00
parent 99054a5237
commit eb97119a2f

View File

@ -6,7 +6,7 @@
/* By: marde-vr <marde-vr@42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/02/18 15:46:50 by tomoron #+# #+# */
/* Updated: 2024/04/02 00:45:25 by tomoron ### ########.fr */
/* Updated: 2024/04/02 13:34:10 by tomoron ### ########.fr */
/* */
/* ************************************************************************** */
@ -16,8 +16,7 @@ void print_parsed_token(t_token *token)
{
while (token)
{
printf("[");
printf("ARG : \"%s\"", token->value);
printf("[ARG : \"%s\"]", token->value);
token = token->next;
}
printf("\n");