mirror of
https://codeberg.org/la-chouette/minishell.git
synced 2025-12-06 07:28:09 +01:00
22 lines
1,022 B
C
22 lines
1,022 B
C
|
|
/* ************************************************************************** */
|
||
|
|
/* */
|
||
|
|
/* ::: :::::::: */
|
||
|
|
/* pipe.h :+: :+: :+: */
|
||
|
|
/* +:+ +:+ +:+ */
|
||
|
|
/* By: khais <marvin@42.fr> +#+ +:+ +#+ */
|
||
|
|
/* +#+#+#+#+#+ +#+ */
|
||
|
|
/* Created: 2025/02/21 15:03:37 by khais #+# #+# */
|
||
|
|
/* Updated: 2025/02/21 15:04:43 by khais ### ########.fr */
|
||
|
|
/* */
|
||
|
|
/* ************************************************************************** */
|
||
|
|
|
||
|
|
#ifndef PIPE_H
|
||
|
|
# define PIPE_H
|
||
|
|
|
||
|
|
# include <stdbool.h>
|
||
|
|
# include "../worddesc/worddesc.h"
|
||
|
|
|
||
|
|
bool is_pipe(t_worddesc *word);
|
||
|
|
|
||
|
|
#endif
|