aboutsummaryrefslogtreecommitdiff
path: root/src/eval/pipe.c
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-04-01 18:10:56 +0200
committerCharles <sircharlesaze@gmail.com>2020-04-01 18:10:56 +0200
commit1ff9504c6b6f4c8bcebb75935b2d999f6c7b018c (patch)
tree8aae342f45c24169f0e9da55551e1a2ddca7503f /src/eval/pipe.c
parent2eb59ee61e49b60472f82c000dd4f3536bd1987c (diff)
downloadminishell-1ff9504c6b6f4c8bcebb75935b2d999f6c7b018c.tar.gz
minishell-1ff9504c6b6f4c8bcebb75935b2d999f6c7b018c.tar.bz2
minishell-1ff9504c6b6f4c8bcebb75935b2d999f6c7b018c.zip
Norm compliant comment format, dirty script for doxygen comments
Diffstat (limited to 'src/eval/pipe.c')
-rw-r--r--src/eval/pipe.c18
1 files changed, 15 insertions, 3 deletions
diff --git a/src/eval/pipe.c b/src/eval/pipe.c
index 897a5f2..125c013 100644
--- a/src/eval/pipe.c
+++ b/src/eval/pipe.c
@@ -1,11 +1,23 @@
-/**
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* pipe.c :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2020/04/01 17:05:58 by charles #+# #+# */
+/* Updated: 2020/04/01 17:05:59 by charles ### ########.fr */
+/* */
+/* ************************************************************************** */
+
+/*
** \file pipe.c
** \brief Pipes setup
*/
#include "eval.h"
-/**
+/*
** \brief Setup STDIN and STDOUT pipe in the parent process
** \param cmd Command to setup
** \param pipe_in STDIN pipe
@@ -29,7 +41,7 @@ int pipe_setup_parent(t_cmd *cmd, int pipe_in[2], int pipe_out[2])
return (0);
}
-/**
+/*
** \brief Setup STDIN and STDOUT pipe in the child process
** \param pipe_in STDIN pipe
** \param pipe_out STDOUT pipe