We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b23d667 commit a992226Copy full SHA for a992226
components/libc/compilers/common/cwchar.c
@@ -112,12 +112,12 @@ int wcwidth(wchar_t ucs)
112
(ucs >= 0xf900 && ucs <= 0xfaff) || /* CJK Compatibility Ideographs */
113
(ucs >= 0xfe30 && ucs <= 0xfe6f) || /* CJK Compatibility Forms */
114
(ucs >= 0xff00 && ucs <= 0xff5f) || /* Fullwidth Forms */
115
- (ucs >= 0xffe0 && ucs <= 0xffe6) // ||
116
- //#ifndef _WIN32
117
- // (ucs >= 0x20000 && ucs <= 0x2ffff)
118
- //#else
119
- // 0
120
- //#endif
+ (ucs >= 0xffe0 && ucs <= 0xffe6) ||
+ #ifndef _WIN32
+ (ucs >= 0x20000 && ucs <= 0x2ffff)
+ #else
+ 0
+ #endif
121
));
122
}
123
0 commit comments