/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* state_2.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_s10(t_lexer *lexer, t_lexer_state *s) { if (s->lookahead == 'a') return (lex_advance(24, lexer, s)); return (lex_end_state(lexer, s)); } bool lex_keywords_s11(t_lexer *lexer, t_lexer_state *s) { if (s->lookahead == 'e') return (lex_advance(25, lexer, s)); if (s->lookahead == 'o') return (lex_advance(26, lexer, s)); return (lex_end_state(lexer, s)); } bool lex_keywords_s12(t_lexer *lexer, t_lexer_state *s) { if (s->lookahead == 'l') return (lex_advance(27, lexer, s)); if (s->lookahead == 'x') return (lex_advance(28, lexer, s)); return (lex_end_state(lexer, s)); } bool lex_keywords_s13(t_lexer *lexer, t_lexer_state *s) { if (s->lookahead == 'i') return (lex_advance(29, lexer, s)); if (s->lookahead == 'o') return (lex_advance(30, lexer, s)); if (s->lookahead == 'u') return (lex_advance(31, lexer, s)); return (lex_end_state(lexer, s)); } bool lex_keywords_s14(t_lexer *lexer, t_lexer_state *s) { if (s->lookahead == 'f') return (lex_advance(32, lexer, s)); return (lex_end_state(lexer, s)); }