From c55ce246f9d7568ad306d3ca9902c03bd99ee93b Mon Sep 17 00:00:00 2001 From: Quinten Mennen Date: Tue, 11 Feb 2025 16:38:35 +0100 Subject: [PATCH] chore: remove obsolete print list --- src/utils/print_list.c | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 src/utils/print_list.c diff --git a/src/utils/print_list.c b/src/utils/print_list.c deleted file mode 100644 index 8204c05..0000000 --- a/src/utils/print_list.c +++ /dev/null @@ -1,24 +0,0 @@ -/* ************************************************************************** */ -/* */ -/* :::::::: */ -/* print_list.c :+: :+: */ -/* +:+ */ -/* By: whaffman +#+ */ -/* +#+ */ -/* Created: 2025/02/05 16:12:14 by whaffman #+# #+# */ -/* Updated: 2025/02/05 16:12:45 by whaffman ######## odam.nl */ -/* */ -/* ************************************************************************** */ - -#include "minishell.h" - -void print_list(void *content) -{ - t_token *token; - - token = (t_token *)content; - if (token->type != T_ERROR) - ft_printf("%s\n", token->value); - else - ft_printf("unexpected token at position %i\n", token->position); -}