90 lines
3.3 KiB
C
90 lines
3.3 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* state_59.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_s295(t_lexer *lexer, t_lexer_state *s)
|
|
{
|
|
if (lex_normal_map295(lexer, s))
|
|
return (true);
|
|
if (((s->lookahead >= '\t' && s->lookahead <= '\r') || \
|
|
s->lookahead == ' '))
|
|
return (lex_skip(295, lexer, s));
|
|
if ((s->lookahead >= '1' && s->lookahead <= '9'))
|
|
return (lex_advance(805, 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_s296(t_lexer *lexer, t_lexer_state *s)
|
|
{
|
|
if (lex_normal_map296(lexer, s))
|
|
return (true);
|
|
if (((s->lookahead >= '\t' && s->lookahead <= '\r') || \
|
|
s->lookahead == ' '))
|
|
return (lex_skip(296, 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_s297(t_lexer *lexer, t_lexer_state *s)
|
|
{
|
|
if (lex_normal_map297(lexer, s))
|
|
return (true);
|
|
if (((s->lookahead >= '\t' && s->lookahead <= '\r') || \
|
|
s->lookahead == ' '))
|
|
return (lex_skip(297, lexer, s));
|
|
if ((s->lookahead >= '1' && s->lookahead <= '9'))
|
|
return (lex_advance(805, lexer, s));
|
|
if ((s->lookahead != 0 && (s->lookahead > '&' && \
|
|
s->lookahead < ')') && (s->lookahead > '{' && s->lookahead \
|
|
< '}')))
|
|
return (lex_advance(958, lexer, s));
|
|
return (lex_end_state(lexer, s));
|
|
}
|
|
|
|
bool lex_normal_s298(t_lexer *lexer, t_lexer_state *s)
|
|
{
|
|
if (lex_normal_map298(lexer, s))
|
|
return (true);
|
|
if (((s->lookahead >= '\t' && s->lookahead <= '\r') || \
|
|
s->lookahead == ' '))
|
|
return (lex_skip(298, lexer, s));
|
|
if ((s->lookahead >= '1' && s->lookahead <= '9'))
|
|
return (lex_advance(805, lexer, s));
|
|
if ((s->lookahead != 0 && (s->lookahead > '&' && \
|
|
s->lookahead < ')') && s->lookahead != ';' && s->lookahead \
|
|
!= '<'))
|
|
return (lex_advance(958, lexer, s));
|
|
return (lex_end_state(lexer, s));
|
|
}
|
|
|
|
bool lex_normal_s299(t_lexer *lexer, t_lexer_state *s)
|
|
{
|
|
if (lex_normal_map299(lexer, s))
|
|
return (true);
|
|
if (((s->lookahead >= '\t' && s->lookahead <= '\r') || \
|
|
s->lookahead == ' '))
|
|
return (lex_skip(299, lexer, s));
|
|
if ((s->lookahead >= '1' && s->lookahead <= '9'))
|
|
return (lex_advance(805, lexer, s));
|
|
if ((s->lookahead != 0 && (s->lookahead > '&' && \
|
|
s->lookahead < ')') && (s->lookahead > '{' && s->lookahead \
|
|
< '}')))
|
|
return (lex_advance(958, lexer, s));
|
|
return (lex_end_state(lexer, s));
|
|
}
|