maxishell
Implementation of a shell for Linux-like systems
Loading...
Searching...
No Matches
pipe.h
Go to the documentation of this file.
1/* ************************************************************************** */
2/* */
3/* ::: :::::::: */
4/* pipe.h :+: :+: :+: */
5/* +:+ +:+ +:+ */
6/* By: dmdemirk <dmdemirk@student.42london.c +#+ +:+ +#+ */
7/* +#+#+#+#+#+ +#+ */
8/* Created: 2024/06/17 11:02:59 by dmdemirk #+# #+# */
9/* Updated: 2024/06/26 14:39:51 by dmdemirk ### ########.fr */
10/* */
11/* ************************************************************************** */
12
13#ifndef PIPE_H
14# define PIPE_H
15
16# include "shell.h"
17# include "tokens.h"
18
19# define WAIT_NEXT_COMMAND 1
20
21/* pipe */
22int builtin_pipe(t_ast *node, t_ms_data *data);
23
24#endif
int builtin_pipe(t_ast *node, t_ms_data *data)
execute pipe when | is found in the command
Definition pipe.c:35
Definition tokens.h:50