-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpipex.h
28 lines (24 loc) · 1.26 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* pipex.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: emgenc <[email protected] +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/01/26 17:17:26 by emgenc #+# #+# */
/* Updated: 2025/02/06 17:47:26 by emgenc ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef PIPEX_H
# define PIPEX_H
# include "./libft-emgenc/libft.h"
# include <errno.h>
# include <unistd.h>
void error(int arg);
int open_file(char *argv, int i);
void run(char *argv, char **envp);
void empty_arg_check(char **argv, int argc);
int is_empty_str(const char *s);
void accesschecker(char *user_input, char **envp, char **arguments);
char **ft_split_quotes(const char *s);
#endif