2025-04-15 10:36:55 +02:00
|
|
|
/* ************************************************************************** */
|
|
|
|
|
/* */
|
|
|
|
|
/* ::: :::::::: */
|
|
|
|
|
/* simple_cmd_parse.h :+: :+: :+: */
|
|
|
|
|
/* +:+ +:+ +:+ */
|
|
|
|
|
/* By: khais <marvin@42.fr> +#+ +:+ +#+ */
|
|
|
|
|
/* +#+#+#+#+#+ +#+ */
|
|
|
|
|
/* Created: 2025/04/15 10:38:23 by khais #+# #+# */
|
2025-04-15 14:10:03 +02:00
|
|
|
/* Updated: 2025/04/15 14:05:40 by khais ### ########.fr */
|
2025-04-15 10:36:55 +02:00
|
|
|
/* */
|
|
|
|
|
/* ************************************************************************** */
|
|
|
|
|
|
|
|
|
|
#ifndef SIMPLE_CMD_PARSE_H
|
|
|
|
|
# define SIMPLE_CMD_PARSE_H
|
|
|
|
|
|
|
|
|
|
# include "../../minishell.h"
|
|
|
|
|
|
2025-04-15 14:10:03 +02:00
|
|
|
t_cmd *minishell_simple_cmd_parse(t_minishell *app, t_wordlist **tokens);
|
2025-04-15 10:36:55 +02:00
|
|
|
|
|
|
|
|
#endif // SIMPLE_CMD_PARSE_H
|