-
Notifications
You must be signed in to change notification settings - Fork 0
/
pipex.h
30 lines (25 loc) · 1.13 KB
/
pipex.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* pipex.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: agaliste <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/11/18 14:59:00 by agaliste #+# #+# */
/* Updated: 2021/11/18 14:59:01 by agaliste ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef PIPEX_H
# define PIPEX_H
# include <fcntl.h>
# include <stdlib.h>
# include <string.h>
# include <errno.h>
# include "./libft/libft.h"
/*
** UTILS
*/
void exiterror(char *error);
char *find_path(char *cmd, char **env);
void check_num_args(int argc);
#endif