summaryrefslogtreecommitdiffstats
path: root/src/d_define.h
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-09-08 20:26:51 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-09-08 20:26:51 +0200
commit74766656e5b605785e0e9622eb7f10d20a5467e3 (patch)
treed3818db14279a2e9649e314b3af4e819c61228e2 /src/d_define.h
parentPretty bav (diff)
download42-minishell-74766656e5b605785e0e9622eb7f10d20a5467e3.tar.gz
42-minishell-74766656e5b605785e0e9622eb7f10d20a5467e3.tar.bz2
42-minishell-74766656e5b605785e0e9622eb7f10d20a5467e3.tar.xz
42-minishell-74766656e5b605785e0e9622eb7f10d20a5467e3.tar.zst
42-minishell-74766656e5b605785e0e9622eb7f10d20a5467e3.zip
I hate myself and I want to die
Diffstat (limited to 'src/d_define.h')
-rw-r--r--src/d_define.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/d_define.h b/src/d_define.h
index 5c10526..8e73668 100644
--- a/src/d_define.h
+++ b/src/d_define.h
@@ -66,11 +66,14 @@
** ====== UTILS ======
*/
-#define C_SQUOTE 0x27
-#define C_DQUOTE 0x22
-#define C_BACKS 0x5c
#define C_NUL 0x00
#define C_SUB 0x1a
+#define C_DQUOTE 0x22
+#define C_SQUOTE 0x27
+#define C_AMP 0x26
+#define C_SEMIC 0x3b
+#define C_BACKS 0x5c
+#define C_PIPE 0x7c
/*
** ====== FILES ======