6.6.4.1.13 -Wmultichar, -Wno-multichar
Warn if a multi-character char constant is used. Usually, such constants are typographical errors. Since they have implementation-defined values, they should not be used in portable code. The following example illustrates the use of a multi-character char constant:
char
xx(void)
{
return('xx');
}