semi-final parser

This commit is contained in:
Mthandazo Ndhlovu
2019-05-02 12:58:28 +02:00
10 changed files with 150 additions and 14 deletions

View File

@@ -6,7 +6,7 @@
/* By: mndhlovu <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/04/04 09:24:45 by mndhlovu #+# #+# */
/* Updated: 2019/04/30 08:16:49 by mndhlovu ### ########.fr */
/* Updated: 2019/05/02 11:18:12 by mndhlovu ### ########.fr */
/* */
/* ************************************************************************** */
@@ -34,12 +34,24 @@ int lm_get_value(char *line)
return (0);
}
void lm_get_cmd_vertices(int count, t_syntax *synt
, t_lmdata *ldata, char *line)
{
if (count > 0 && line != NULL)
{
lm_check_start_vert(count, synt, ldata, line);
lm_check_end_vert(count, synt, ldata, line);
}
}
void lm_get_cmd_vert(int count, t_syntax *synt
, t_lmdata *ldata, char *line)
{
char *tmp;
if (synt->s_pos == count - 1)
if ((synt->s_pos == count - 1 && lm_check_forbiden_chars(line, 0))
|| ((synt->s_pos <= count && !synt->s_vert)
&& lm_check_forbiden_chars(line, 0)))
{
tmp = ft_strchr(line, '#');
if (tmp == NULL && count != synt->e_vert)
@@ -49,7 +61,9 @@ void lm_get_cmd_vert(int count, t_syntax *synt
synt->s_error = 1;
}
}
if (synt->e_pos == count - 1)
if ((synt->e_pos == count - 1 && lm_check_forbiden_chars(line, 0))
|| ((synt->e_pos <= count && !synt->e_vert)
&& lm_check_forbiden_chars(line, 0)))
{
tmp = ft_strchr(line, '#');
if (tmp == NULL && count != synt->s_vert)