Using xcode, I'm trying to get a const c string into a unichar array by doing the following:
const unichar *str = "Test String";
but the "Test String" is typed to be (const char *) and produces compiler errors. Is there way to specify a "Test String" that is of type unichar?
I was hoping for somethig like:
const unichar *str = U"Test String";
so all the work was done during compile.