-
Notifications
You must be signed in to change notification settings - Fork 0
/
parsing.h
20 lines (17 loc) · 1.04 KB
/
parsing.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* parsing.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lgasc <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/13 20:26:03 by lgasc #+# #+# */
/* Updated: 2024/07/18 03:41:19 by lgasc ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef PARSING_H
# define PARSING_H
# include "atom.h"
t_parse ft_parse(const char *text)__attribute__ ((nonnull, warn_unused_result));
void ft_free_parse(t_parse p);
#endif