minishell/src/parser/matchers/pipe.h

21 lines
1,022 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* pipe.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: kcolin <kcolin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/02/21 15:03:37 by kcolin #+# #+# */
/* Updated: 2025/02/21 15:04:43 by kcolin ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef PIPE_H
# define PIPE_H
# include <stdbool.h>
# include "../worddesc/worddesc.h"
bool is_pipe(t_worddesc *word);
#endif