-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmacros.h
40 lines (35 loc) · 1.33 KB
/
macros.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
31
32
33
34
35
36
37
38
39
40
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* macros.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: bmachado <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/12/14 17:24:27 by bmachado #+# #+# */
/* Updated: 2022/02/23 14:38:43 by bmachado ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef MACROS_H
# define MACROS_H
# define CAPACITY 5000
# define MAX_ARG_LEN 2097152
# define LOCAL 1
# define ENV 2
# define IN_ECHO 1
# define DEFAULT_CODE 256
# define CHAR 1
# define DOLLAR 2
# define QUOTES 3
# define D_QUOTES 4
# define SPACE 5
# define EQUAL 6
# define PIPE 7
# define ARG_END 8
# define GREAT 9
# define LESS 10
# define D_GREAT 11
# define D_LESS 12
# define CREATDOC 0
# define CLEARDOC 1
# define TMP_PATH "/tmp/minishell.tmp"
#endif