mirror of
https://codeberg.org/la-chouette/minishell.git
synced 2025-12-06 07:28:09 +01:00
matchers: add matcher for a pipe
This commit is contained in:
parent
256a8f5f9b
commit
2b8bb859d1
3 changed files with 46 additions and 0 deletions
21
src/parser/matchers/pipe.h
Normal file
21
src/parser/matchers/pipe.h
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue