summaryrefslogtreecommitdiffstats
path: root/libc/misc/wchar
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
* Add copyright message and remove dead code.Manuel Novoa III2002-07-051-157/+28
|
* Enable WCHAR support for C/POSIX stub locales.Manuel Novoa III2002-07-033-21/+626
| | | | | | 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-232-0/+770
they're quite solid now and Erik needs them for the gcc port. Comments at the head of wchar.c.