mirror of
https://codeberg.org/la-chouette/minishell.git
synced 2025-12-05 23:18:08 +01:00
21 lines
1,022 B
C
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
|