summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/dosfs/msdos_conv_utf8.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* dosfs: Fix msdos_utf8_normalize_and_fold()Sebastian Huber2017-03-211-2/+2
| | | | | | | | It is all right in case the result uses the full destination buffer. Without this fix the handling of a maximum 8.3 short file name is broken. Close #2928.
* Change all references of rtems.com to rtems.org.Chris Johns2014-03-211-1/+1
|
* dosfs: Correct handling of iconv() return valueRalf Kirchner2013-09-101-5/+16
|
* dosfs: Unsigned compared against 0Gedare Bloom2013-09-051-1/+1
| | | | Change the type for storing the return from iconv to be signed.
* dosfs: UTF-8 Support: Multibyte conversionsRalf Kirchner2013-06-031-0/+308
Add optional conversion methods for multibyte strings. With these conversions which make use of iconv and utf8proc it becomes possible to use strings from any language (Czech, Chinese, Arabian, Hebrew, Corean, ...) for file names and directory names. NOTE: Iconv support must be activated during the build of the tool chain for these conversion methods (options --enable-newlib-iconv --enable-newlib-iconv-encodings=[ENCODINGS_YOU_WANT]). Alternatively you can provide your own conversion methods.