42-archive/42sh/src/lexer/token_print.c
2017-03-24 17:25:53 +01:00

25 lines
1 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* token_print.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jhalford <jhalford@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/11/28 14:39:01 by jhalford #+# #+# */
/* Updated: 2017/03/24 17:24:09 by gwojda ### ########.fr */
/* */
/* ************************************************************************** */
#include "minishell.h"
void token_print(t_list *lst)
{
t_token *token;
while (lst)
{
if (lst->content)
token = lst->content;
lst = lst->next;
}
}