diff options
Diffstat (limited to 'src')
-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 ====== |