Is there a library available or do I need to design/code my own? The target platform is very old and the compiler does not provide wchar_t.
No library allowed so plain c/headers will be appropriate
|
1
|
Is there a library available or do I need to design/code my own? The target platform is very old and the compiler does not provide wchar_t. No library allowed so plain c/headers will be appropriate
|
|||
|
|
|
|
Here is a sample implementation in C |
||
|
|
|
Unicode consortium's sample implementation is here. Look up this FAQ and examples. Or, do you want to try out a library like libidn or libicc? |
||
|
|
|
also You can try iconv(). On some platform it's part of C-runtime. |
||
|