20 lines
1015 B
C
20 lines
1015 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* syntax.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/03/28 15:42:54 by cchauvet #+# #+# */
|
|
/* Updated: 2023/03/28 15:42:55 by cchauvet ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef SYNTAX_H
|
|
# define SYNTAX_H
|
|
# include "../data/data.h"
|
|
|
|
int ft_syntax_verif(t_data *data, const char *str);
|
|
|
|
#endif
|