token_print rm
This commit is contained in:
parent
372a665e8b
commit
a4b3a659f3
1 changed files with 0 additions and 25 deletions
|
|
@ -1,25 +0,0 @@
|
||||||
/* ************************************************************************** */
|
|
||||||
/* */
|
|
||||||
/* ::: :::::::: */
|
|
||||||
/* token_print.c :+: :+: :+: */
|
|
||||||
/* +:+ +:+ +:+ */
|
|
||||||
/* By: jhalford <jhalford@student.42.fr> +#+ +:+ +#+ */
|
|
||||||
/* +#+#+#+#+#+ +#+ */
|
|
||||||
/* 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;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Loading…
Reference in a new issue