summaryrefslogtreecommitdiffstats
path: root/libc/misc/wchar/wchar.c
Commit message (Collapse)AuthorAgeFilesLines
* When DODEBUG and HAS_WCHAR were enabled and HAS_LOCALE was disabled,Eric Andersen2002-08-031-2/+6
| | | | | | | | wchar.c wouldn't compile: wchar.c: In function `__mbsnrtowcs': wchar.c:631: `__ctype_encoding_7_bit' undeclared (first use in this function) This fixes it by keeping the locale specific asserts hidden when not relevant. -Erik
* Enable WCHAR support for C/POSIX stub locales.Manuel Novoa III2002-07-031-16/+60
| | | | | | Implemented unformatted wide i/o functions. (ungetwc still needs testing) Fix a few bugs in wchar.c. Modifications for bcc/elks support.
* Multibyte and wide char conversion functions. Some work still to do, butManuel Novoa III2002-05-231-0/+723
they're quite solid now and Erik needs them for the gcc port. Comments at the head of wchar.c.