Pelle, can you please add support for multibyte character literals?
For instance: 'char' -> 0x72616863
You mean something like this?
int f(void)
{
return 'abcd';
}
If so: probably - and only because MSVC seems to support it (I find it completely useless myself...)
Pelle
No, I mean like:if (*(int*)ptr == 'shor' && *(ptr+4) == 't') { ... }
It would be useful (e.g. in string comparisons) instead of writing 'shor' as :
's' | ('h'<<8 ) | ('o'<<16) | ('r'<<24)
or writing it as a hexadecimal value... You see?
Same difference...
Pelle