mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 07:32:44 +00:00
8e631ee3e7
Macro definitions are simply a slice of bytes, which may not be UTF-8 encoded. If they are not UTF-8 encoded, escape non-printable and non-ASCII characters as `\xNN`. Fixes #12784
6 lines
164 B
C
6 lines
164 B
C
// Note: This file is encoded with ISO/IEC 8859-1 (latin1), not UTF-8.
|
|
// Do not change the encoding
|
|
|
|
#define UNPRINTABLE_STRING "©©©"
|
|
#define UNPRINTABLE_CHAR '©'
|