Light C Unicode Library - Stack Overflow most recent 30 from stackoverflow.com2010-03-21T02:38:43Zhttp://stackoverflow.com/feeds/question/313555http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/313555/light-c-unicode-library7Light C Unicode LibraryAkusetehttp://stackoverflow.com/users/401752008-11-24T06:48:02Z2008-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#3135595Answer by Avi for Light C Unicode LibraryAvihttp://stackoverflow.com/users/16052008-11-24T06:52:10Z2008-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#3135961Answer by Artelius for Light C Unicode LibraryArteliushttp://stackoverflow.com/users/319452008-11-24T07:30:02Z2008-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>