diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-09-05 17:14:00 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-09-05 17:14:00 +0200 |
commit | 0bd6ce0d398af5cb9e19482e77dbec1bb26fc9bd (patch) | |
tree | 91a2d19ded9fa48742dcfe03d617b8b6073e34e6 /src/d_define.h | |
parent | More defines (diff) | |
download | 42-minishell-0bd6ce0d398af5cb9e19482e77dbec1bb26fc9bd.tar.gz 42-minishell-0bd6ce0d398af5cb9e19482e77dbec1bb26fc9bd.tar.bz2 42-minishell-0bd6ce0d398af5cb9e19482e77dbec1bb26fc9bd.tar.xz 42-minishell-0bd6ce0d398af5cb9e19482e77dbec1bb26fc9bd.tar.zst 42-minishell-0bd6ce0d398af5cb9e19482e77dbec1bb26fc9bd.zip |
Better defines
Diffstat (limited to 'src/d_define.h')
-rw-r--r-- | src/d_define.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/d_define.h b/src/d_define.h index b8196a7..ef980c6 100644 --- a/src/d_define.h +++ b/src/d_define.h @@ -66,10 +66,10 @@ ** ====== UTILS ====== */ -#define C_SQUOTE '\'' -#define C_DQUOTE '"' -#define C_BS '\\' -#define C_NULL '\000' +#define C_SQUOTE 0x27 +#define C_DQUOTE 0x22 +#define C_BS 0x5c +#define C_NULL 0x00 /* ** ====== FILES ====== |