13 lines
193 B
C
13 lines
193 B
C
#include "token.h"
|
|
|
|
void token_print(t_list *lst)
|
|
{
|
|
t_token *token;
|
|
|
|
while (lst)
|
|
{
|
|
token = lst->content;
|
|
ft_printf("%#06llx: '%s'\n", token->type, token->data);
|
|
lst = lst->next;
|
|
}
|
|
}
|