Light C Unicode Library - Stack Overflow most recent 30 from stackoverflow.com 2010-03-21T02:38:43Z http://stackoverflow.com/feeds/question/313555 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/313555/light-c-unicode-library 7 Light C Unicode Library Akusete http://stackoverflow.com/users/40175 2008-11-24T06:48:02Z 2008-12-18T09:36:13Z <p>Im looking for a small C library to handle utf8 strings.</p> <p>Specifically, splitting based on unicode delimiters for use with stemming algorithms.</p> <p>Related posts have suggested:</p> <p>ICU <a href="http://www.icu-project.org/" rel="nofollow">http://www.icu-project.org/</a> (I found it too bulky for my purposes on embedded devices)</p> <p>UTF8-CPP: <a href="http://utfcpp.sourceforge.net/" rel="nofollow">http://utfcpp.sourceforge.net/</a> (Excellent, but C++ not C)</p> <p>Has anyone found any platform independant, small codebase libraries for handling unicode strings (doesnt need to do naturalisation).</p> <p>Any advice would be appreciated.</p> http://stackoverflow.com/questions/313555/light-c-unicode-library/313559#313559 5 Answer by Avi for Light C Unicode Library Avi http://stackoverflow.com/users/1605 2008-11-24T06:52:10Z 2008-11-24T06:52:10Z <p>A nice, light, library which I use successfully is <a href="http://www.flexiguided.de/publications.utf8proc.en.html" rel="nofollow">utf8proc</a>.</p> http://stackoverflow.com/questions/313555/light-c-unicode-library/313596#313596 1 Answer by Artelius for Light C Unicode Library Artelius http://stackoverflow.com/users/31945 2008-11-24T07:30:02Z 2008-11-24T07:30:02Z <p>UTF-8 is specially designed so that many byte-oriented string functions continue to work or only need minor modifications.</p> <p>C's <strong><code>strstr</code></strong> function, for instance, will work perfectly as long as both its inputs are valid, null-terminated UTF-8 strings. <strong><code>strcpy</code></strong> works fine as long as its input string starts at a character boundary (for instance the return value of <strong><code>strstr</code></strong>).</p> <p>So you may not even need a separate library!</p>