Skip to content

Instantly share code, notes, and snippets.

View os-moussao's full-sized avatar
🇲🇦

Oussama Moussaoui os-moussao

🇲🇦
View GitHub Profile
/**
* @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>