/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* state_6.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: maiboyer +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/04/14 19:17:54 by maiboyer #+# #+# */ /* Updated: 2024/04/14 19:18:20 by maiboyer ### ########.fr */ /* */ /* ************************************************************************** */ #include "./lex_keywords_funcs.h" bool lex_keywords_s30(t_lexer *lexer, t_lexer_state *s) { if (s->lookahead == 'e') return (lex_advance(46, lexer, s)); return (lex_end_state(lexer, s)); } bool lex_keywords_s31(t_lexer *lexer, t_lexer_state *s) { if (s->lookahead == 'l') return (lex_advance(47, lexer, s)); return (lex_end_state(lexer, s)); } bool lex_keywords_s32(t_lexer *lexer, t_lexer_state *s) { if (s->lookahead == 'e') return (lex_advance(48, lexer, s)); return (lex_end_state(lexer, s)); } bool lex_keywords_s33(t_lexer *lexer, t_lexer_state *s) { if (s->lookahead == 'f') return (lex_advance(49, lexer, s)); return (lex_end_state(lexer, s)); } bool lex_keywords_s34(t_lexer *lexer, t_lexer_state *s) { if (s->lookahead == 'e') return (lex_advance(50, lexer, s)); return (lex_end_state(lexer, s)); }