From a4b3a659f305b7785c6a0745c29f34fc52c1fa05 Mon Sep 17 00:00:00 2001 From: Jack Halford Date: Sat, 25 Mar 2017 21:41:42 +0100 Subject: [PATCH] token_print rm --- 42sh/src/lexer/token_print.c | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 42sh/src/lexer/token_print.c diff --git a/42sh/src/lexer/token_print.c b/42sh/src/lexer/token_print.c deleted file mode 100644 index 69ec2d07..00000000 --- a/42sh/src/lexer/token_print.c +++ /dev/null @@ -1,25 +0,0 @@ -/* ************************************************************************** */ -/* */ -/* ::: :::::::: */ -/* token_print.c :+: :+: :+: */ -/* +:+ +:+ +:+ */ -/* By: jhalford +#+ +:+ +#+ */ -/* +#+#+#+#+#+ +#+ */ -/* Created: 2016/11/28 14:39:01 by jhalford #+# #+# */ -/* Updated: 2017/03/24 19:23:12 by jhalford ### ########.fr */ -/* */ -/* ************************************************************************** */ - -#include "minishell.h" - -void token_print(t_list *lst) -{ - t_token *token; - - while (lst) - { - if ((token = lst->content)) - DG("token : %s data [%s]", read_state(token->type), token->data); - lst = lst->next; - } -}