/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* fd.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cchauvet void ft_closer(int fds[2]) { if (fds[0] > 2) { close(fds[0]); } if (fds[1] > 2) { close(fds[1]); } } void ft_mega_closer(int fds1[2], int fds2[2]) { ft_closer(fds1); ft_closer(fds2); } void ft_add_fd(int fds[2], int fd) { if (fds[0] == -1) fds[0] = fd; else fds[1] = fd; }