mirror of
https://codeberg.org/la-chouette/minishell.git
synced 2025-12-06 07:28:09 +01:00
21 lines
1.1 KiB
C
21 lines
1.1 KiB
C
|
|
/* ************************************************************************** */
|
||
|
|
/* */
|
||
|
|
/* ::: :::::::: */
|
||
|
|
/* simple_cmd_parse.h :+: :+: :+: */
|
||
|
|
/* +:+ +:+ +:+ */
|
||
|
|
/* By: khais <marvin@42.fr> +#+ +:+ +#+ */
|
||
|
|
/* +#+#+#+#+#+ +#+ */
|
||
|
|
/* Created: 2025/04/15 10:38:23 by khais #+# #+# */
|
||
|
|
/* Updated: 2025/04/15 10:38:41 by khais ### ########.fr */
|
||
|
|
/* */
|
||
|
|
/* ************************************************************************** */
|
||
|
|
|
||
|
|
#ifndef SIMPLE_CMD_PARSE_H
|
||
|
|
# define SIMPLE_CMD_PARSE_H
|
||
|
|
|
||
|
|
# include "../../minishell.h"
|
||
|
|
|
||
|
|
t_cmd *minishell_simple_cmd_parse(t_minishell *app, t_wordlist *tokens);
|
||
|
|
|
||
|
|
#endif // SIMPLE_CMD_PARSE_H
|