20 lines
1010 B
C
20 lines
1010 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* parsing.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/04/27 11:39:55 by cchauvet #+# #+# */
|
|
/* Updated: 2023/04/27 11:40:42 by cchauvet ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef PARSING_H
|
|
# define PARSING_H
|
|
# include "./data.h"
|
|
|
|
bool parsing(t_data *data, char **args, size_t n);
|
|
|
|
#endif
|