This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @file pipex.c | |
* @author @os-moussao | |
* @brief Implementing pipex project using a tree representation of the pipes | |
* @features input-output redirections, heredoc, supports multiple pipes | |
*/ | |
#include <stdlib.h> | |
#include <stdio.h> | |
#include <unistd.h> | |
#include <fcntl.h> |