You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
f645340e6e
[CL 2114451 in Main branch]
23 lines
599 B
Raku
23 lines
599 B
Raku
/* m_33_ksc.t: Wide character constant encoded in KSC-5601. */
|
|
|
|
#include <limits.h>
|
|
#define BYTES_VAL (1 << CHAR_BIT)
|
|
|
|
/* 33.1: L'ch'. */
|
|
|
|
#pragma __setlocale( "ksc5601") /* For MCPP */
|
|
#pragma setlocale( "korean") /* For Visual C */
|
|
|
|
#if L'í®' == '\xed' * BYTES_VAL + '\xae'
|
|
Wide character is encoded in KSC-5601.
|
|
#elif L'í®' == '\xae' * BYTES_VAL + '\xed'
|
|
Wide character is encoded in KSC-5601.
|
|
Inverted order of evaluation.
|
|
#else
|
|
I cannot understand KSC-5601.
|
|
#endif
|
|
#if L'í®' < 0
|
|
Evaluated in negative value.
|
|
#endif
|
|
|