vote up 11 vote down star
1

What is the best unicode library for C? Where "best" is defined by cross-platform support, compiler independence, and reasonable performance across a the most common languages in use.

flag

4 Answers

vote up 7 vote down check

I would suggest IBM's ICU library. It has a very large C, C++ and Java library set. Our company uses this in our commercial product - It is free and open source.

http://www-01.ibm.com/software/globalization/icu/index.jsp and http://www.icu-project.org/

link|flag
vote up -1 vote down

ICU is very bloated and large. I wrote my own library for handling Codepage <--> Unicode convertions, and UTF-x -> UTF-X convertions. I pass all unicode data around in standard char*'s as UTF-8 encoded strings. It is easily 10x faster than ICU and is 1/100 the size.

But that doesn't answer your question, does it? Feel free to use ICU if you don't really care about bloat. Otherwise, I'd keep looking.

link|flag
It's true, ICU has a TON of functionality. However, a large portion of that functionality can be compiled out and not used. – Thomas Sep 3 at 17:38
vote up 10 vote down

Definitively ICU: http://www.icu-project.org/

link|flag
vote up -6 vote down

Why not use the wchar_t built into your fine C++ compiler?

link|flag
unicode is a lot more complex than just storing the charpoints :) – Armin Ronacher Sep 22 '08 at 12:45
Also, from the wiki article on wchar: The width of wchar_t is compiler-specific. programs that need portability across C++ compilers shouldn't use wchar_t for storing Unicode. The wchar_t type is intended for storing compiler-defined wide characters, which may be Unicode characters in some compilers – workmad3 Sep 22 '08 at 12:49
Does C support wchar_t? Or is that just C++? – Ferruccio Sep 22 '08 at 14:46
C does support wchar_t, it's standard since ages Regards Friedrich – Friedrich Sep 24 '08 at 10:40
In the interest of science, which compilers treat wchar_t as unicode and which do not? – TokenMacGuy Jul 20 at 4:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.