30 lines
1.0 KiB
C
Raw Normal View History

/* ************************************************************************** */
/* */
/* ::: :::::::: */
2024-04-27 17:39:26 +02:00
/* parsing.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
2024-04-27 17:39:26 +02:00
/* Created: 2024/04/25 12:20:26 by adjoly #+# #+# */
2024-05-07 11:04:20 +02:00
/* Updated: 2024/05/04 13:54:02 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
2024-04-27 17:39:26 +02:00
#ifndef PARSING_H
# define PARSING_H
2024-04-27 17:39:26 +02:00
typedef struct s_cmd
{
char *cmd;
char **argv;
} t_cmd;
2024-05-07 11:04:20 +02:00
typedef struct s_parsing
{
} t_parsing;
t_cmd split_cmd(char *cmd_av);
#endif