I'm using pycparser to parse some C code. Specifically code that can contain Japanese character inside characters and string such as below:
int main()
{
char ch = '本';
}
I have tried to compile this on Dev-c, and compiles properly. Is this possible with pycparser?
What issues are you observing? I think it's working: