88 lines
3.2 KiB
C
88 lines
3.2 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* state_47.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_s235(t_lexer *lexer, t_lexer_state *s)
|
|
{
|
|
if (s->lookahead == '\n')
|
|
return (lex_advance(925, lexer, s));
|
|
if (s->lookahead == '\r')
|
|
return (lex_advance(234, lexer, s));
|
|
if (((s->lookahead >= '\t' && s->lookahead <= '\f') || \
|
|
s->lookahead == ' '))
|
|
return (lex_skip(415, lexer, s));
|
|
if (s->lookahead != 0)
|
|
return (lex_advance(958, lexer, s));
|
|
return (lex_end_state(lexer, s));
|
|
}
|
|
|
|
bool lex_normal_s236(t_lexer *lexer, t_lexer_state *s)
|
|
{
|
|
if (lex_normal_map236(lexer, s))
|
|
return (true);
|
|
if (((s->lookahead >= '\t' && s->lookahead <= '\r') || \
|
|
s->lookahead == ' '))
|
|
return (lex_skip(236, 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_s237(t_lexer *lexer, t_lexer_state *s)
|
|
{
|
|
if (lex_normal_map237(lexer, s))
|
|
return (true);
|
|
if (((s->lookahead >= '\t' && s->lookahead <= '\r') || \
|
|
s->lookahead == ' '))
|
|
return (lex_skip(237, 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_s238(t_lexer *lexer, t_lexer_state *s)
|
|
{
|
|
if (lex_normal_map238(lexer, s))
|
|
return (true);
|
|
if (((s->lookahead >= '\t' && s->lookahead <= '\r') || \
|
|
s->lookahead == ' '))
|
|
return (lex_skip(238, 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_s239(t_lexer *lexer, t_lexer_state *s)
|
|
{
|
|
if (lex_normal_map239(lexer, s))
|
|
return (true);
|
|
if (((s->lookahead >= '\t' && s->lookahead <= '\r') || \
|
|
s->lookahead == ' '))
|
|
return (lex_skip(239, 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));
|
|
}
|