mirror of
https://codeberg.org/la-chouette/minishell.git
synced 2025-12-06 07:28:09 +01:00
20 lines
1 KiB
C
20 lines
1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* parse_pipeline.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: khais <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/03/11 16:01:00 by khais #+# #+# */
|
|
/* Updated: 2025/03/11 16:02:15 by khais ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef PARSE_PIPELINE_H
|
|
# define PARSE_PIPELINE_H
|
|
|
|
# include "../src/parser/pipeline/pipeline.h"
|
|
|
|
t_pipeline *parse_pipeline(char *input);
|
|
|
|
#endif // PARSE_PIPELINE_H
|