diff options
author | Karl Williamson <public@khwilliamson.com> | 2013-04-13 09:51:34 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2013-08-29 09:56:06 -0600 |
commit | c5eda08a3ed28f8c2b583618101553353dae3b51 (patch) | |
tree | a0f72c61a37698cb09a1a682fe098f42df4fa023 /unicode_constants.h | |
parent | 2ca8589c5190f9016bfcdbc996f56ad0b8557fef (diff) | |
download | perl-c5eda08a3ed28f8c2b583618101553353dae3b51.tar.gz |
unicode_constants.h: Add #defines for CR, LF
Diffstat (limited to 'unicode_constants.h')
-rw-r--r-- | unicode_constants.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/unicode_constants.h b/unicode_constants.h index 35842a3176..38b438a06a 100644 --- a/unicode_constants.h +++ b/unicode_constants.h @@ -41,6 +41,8 @@ #define BOM_UTF8_TAIL "\xBB\xBF" /* U+FEFF */ #define DEL_NATIVE 0x7F /* U+007F */ +#define CR_NATIVE 0x0D /* U+000D */ +#define LF_NATIVE 0x0A /* U+000A */ #define LATIN_SMALL_LETTER_SHARP_S_NATIVE 0xDF /* U+00DF */ #define LATIN_SMALL_LETTER_A_WITH_RING_ABOVE_NATIVE 0xE5 /* U+00E5 */ #define LATIN_CAPITAL_LETTER_A_WITH_RING_ABOVE_NATIVE 0xC5 /* U+00C5 */ |