about summary refs log tree commit diff
path: root/src/multibyte
Commit message (Collapse)AuthorAgeFilesLines
* fix all implicit conversion between signed/unsigned pointersRich Felker2011-03-251-1/+1
| | | | | | | sadly the C language does not specify any such implicit conversion, so this is not a matter of just fixing warnings (as gcc treats it) but actual errors. i would like to revisit a number of these changes and possibly revise the types used to reduce the number of casts required.
* cleanup utf-8 multibyte code, use visibility if possibleRich Felker2011-02-273-84/+5
| | | | | | | | | | | | | this code was written independently of musl, with support for a the backwards, nonstandard "31-bit unicode" some libraries/apps might want. unfortunately the extra code (inside #ifdef) makes the source harder to read and makes code that should be simple look complex, so i'm removing it. anyone who wants to use the old code can find it in the history or from elsewhere. also, change the visibility of the __fsmu8 state machine table to hidden, if supported. this should improve performance slightly in shared-library builds.
* remove sample utf-8 code that's not part of the standard libraryRich Felker2011-02-211-47/+0
|
* cleanup multibyte stuff to remove ugly casts, sanitize the ptr align castsRich Felker2011-02-133-27/+27
|
* initial check-in, version 0.5.0 v0.5.0Rich Felker2011-02-1218-0/+694