diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-09-16 19:52:47 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-09-16 19:52:47 +0200 |
commit | d64bf8070719f761201501c9453a8e255996cdd4 (patch) | |
tree | fe5a58da30e564575dbc542c101b3fd380d56ef3 /src/d_define.h | |
parent | TODO update (diff) | |
download | 42-minishell-d64bf8070719f761201501c9453a8e255996cdd4.tar.gz 42-minishell-d64bf8070719f761201501c9453a8e255996cdd4.tar.bz2 42-minishell-d64bf8070719f761201501c9453a8e255996cdd4.tar.xz 42-minishell-d64bf8070719f761201501c9453a8e255996cdd4.tar.zst 42-minishell-d64bf8070719f761201501c9453a8e255996cdd4.zip |
In progress
Diffstat (limited to '')
-rw-r--r-- | src/d_define.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/d_define.h b/src/d_define.h index f5dd32e..674a141 100644 --- a/src/d_define.h +++ b/src/d_define.h @@ -19,8 +19,8 @@ ** ====== CLASSICS ====== */ -#define M_BUILTINS_REF "echo:cd:pwd:export:unset:env:exit:type:[:alias" -#define M_BUILTINS_REF_LEN 48 +#define M_BUILTINS_REF "echo:cd:pwd:export:unset:env:exit:type:[:alias:h" +#define M_BUILTINS_REF_LEN 49 /* ** ====== PSX ====== @@ -76,6 +76,7 @@ #define C_DOLLAR 0x24 #define C_SQUOTE 0x27 #define C_AMP 0x26 +#define C_PLUS 0x2b #define C_SEMIC 0x3b #define C_EQUALS 0x3d #define C_BACKS 0x5c |