42_minishell/parse/parse.h
2023-03-10 12:32:39 +01:00

8 lines
121 B
C

#ifndef PARSE_H
# define PARSE_H
# include "../data/data.h"
int ft_cmds_parser(t_data *data, const char *line);
#endif