/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* lexer_great.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: jhalford +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/12/03 12:06:35 by jhalford #+# #+# */ /* Updated: 2017/01/10 14:48:49 by jhalford ### ########.fr */ /* */ /* ************************************************************************** */ #include "lexer.h" int lexer_great(t_list **alst, char *str) { t_token *token; token = (*alst)->content; token_append(token, str[0]); if (*(str + 1) == '&') { token->type = TK_GREATAND; token_append(token, str[1]); return (lexer_greatand(alst, str + 2)); } else if (*(str + 1) == '>') { token->type = TK_DGREAT; token_append(token, str[1]); return (ft_tokenize(&(*alst)->next, str + 2, DEFAULT)); } else { token->type = TK_GREAT; return (ft_tokenize(&(*alst)->next, str + 1, DEFAULT)); } }