100 lines
3.6 KiB
C
100 lines
3.6 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* state_106.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/04/14 19:17:54 by maiboyer #+# #+# */
|
|
/* Updated: 2024/04/14 19:18:20 by maiboyer ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "./lex_normal_funcs.h"
|
|
|
|
bool lex_normal_s530(t_lexer *lexer, t_lexer_state *s)
|
|
{
|
|
if (s->eof)
|
|
return (lex_advance(547, lexer, s));
|
|
if (lex_normal_map530(lexer, s))
|
|
return (true);
|
|
if (((s->lookahead >= '\t' && s->lookahead <= '\r') || \
|
|
s->lookahead == ' '))
|
|
return (lex_skip(530, lexer, s));
|
|
if ((s->lookahead >= '1' && s->lookahead <= '9'))
|
|
return (lex_advance(806, lexer, s));
|
|
if (((s->lookahead >= 'A' && s->lookahead <= 'Z') || \
|
|
(s->lookahead >= '_' && s->lookahead <= 'z')))
|
|
return (lex_advance(868, lexer, s));
|
|
if (s->lookahead != 0)
|
|
return (lex_advance(958, lexer, s));
|
|
return (lex_end_state(lexer, s));
|
|
}
|
|
|
|
bool lex_normal_s531(t_lexer *lexer, t_lexer_state *s)
|
|
{
|
|
if (s->eof)
|
|
return (lex_advance(547, lexer, s));
|
|
if (lex_normal_map531(lexer, s))
|
|
return (true);
|
|
if (((s->lookahead >= '\t' && s->lookahead <= '\r') || \
|
|
s->lookahead == ' '))
|
|
return (lex_skip(531, lexer, s));
|
|
if ((s->lookahead >= '1' && s->lookahead <= '9'))
|
|
return (lex_advance(807, lexer, s));
|
|
if (((s->lookahead >= 'A' && s->lookahead <= 'Z') || \
|
|
(s->lookahead >= 'a' && s->lookahead <= 'z')))
|
|
return (lex_advance(873, lexer, s));
|
|
if ((s->lookahead != 0 && (s->lookahead > '&' && \
|
|
s->lookahead < '*')))
|
|
return (lex_advance(958, lexer, s));
|
|
return (lex_end_state(lexer, s));
|
|
}
|
|
|
|
bool lex_normal_s532(t_lexer *lexer, t_lexer_state *s)
|
|
{
|
|
if (s->eof)
|
|
return (lex_advance(547, lexer, s));
|
|
if (lex_normal_map532(lexer, s))
|
|
return (true);
|
|
if (((s->lookahead >= '\t' && s->lookahead <= '\r') || \
|
|
s->lookahead == ' '))
|
|
return (lex_skip(532, lexer, s));
|
|
if (((s->lookahead >= '1' && s->lookahead <= '9') || \
|
|
(s->lookahead >= 'A' && s->lookahead <= 'Z') || \
|
|
(s->lookahead >= 'a' && s->lookahead <= 'z')))
|
|
return (lex_advance(879, lexer, s));
|
|
return (lex_end_state(lexer, s));
|
|
}
|
|
|
|
bool lex_normal_s533(t_lexer *lexer, t_lexer_state *s)
|
|
{
|
|
if (s->eof)
|
|
return (lex_advance(547, lexer, s));
|
|
if (lex_normal_map533(lexer, s))
|
|
return (true);
|
|
if (((s->lookahead >= '\t' && s->lookahead <= '\r') || \
|
|
s->lookahead == ' '))
|
|
return (lex_skip(533, lexer, s));
|
|
if ((s->lookahead >= '1' && s->lookahead <= '9'))
|
|
return (lex_advance(805, lexer, s));
|
|
if (s->lookahead != 0)
|
|
return (lex_advance(958, lexer, s));
|
|
return (lex_end_state(lexer, s));
|
|
}
|
|
|
|
bool lex_normal_s534(t_lexer *lexer, t_lexer_state *s)
|
|
{
|
|
if (s->eof)
|
|
return (lex_advance(547, lexer, s));
|
|
if (lex_normal_map534(lexer, s))
|
|
return (true);
|
|
if (((s->lookahead >= '\t' && s->lookahead <= '\r') || \
|
|
s->lookahead == ' '))
|
|
return (lex_skip(534, lexer, s));
|
|
if ((s->lookahead >= '1' && s->lookahead <= '9'))
|
|
return (lex_advance(805, lexer, s));
|
|
if (s->lookahead != 0)
|
|
return (lex_advance(958, lexer, s));
|
|
return (lex_end_state(lexer, s));
|
|
}
|