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
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* pipeline_parse.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: khais <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/02/24 14:34:55 by khais #+# #+# */
|
|
/* Updated: 2025/03/04 12:07:12 by khais ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef PIPELINE_PARSE_H
|
|
# define PIPELINE_PARSE_H
|
|
|
|
# include "pipeline.h"
|
|
|
|
int pipeline_count_cmds(const t_wordlist *words);
|
|
t_pipeline *pipeline_parse_wordlist(t_pipeline_builder *builder);
|
|
|
|
#endif // PIPELINE_PARSE_H
|