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
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* optional_pipeline_parse.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: kcolin <kcolin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/04/15 10:42:34 by kcolin #+# #+# */
|
|
/* Updated: 2025/04/15 14:07:55 by kcolin ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef OPTIONAL_PIPELINE_PARSE_H
|
|
# define OPTIONAL_PIPELINE_PARSE_H
|
|
|
|
# include "../../minishell.h"
|
|
|
|
t_cmd *minishell_optional_pipeline_parse(t_minishell *app,
|
|
t_wordlist **tokens);
|
|
|
|
#endif // OPTIONAL_PIPELINE_PARSE_H
|