Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Optimise the common case where no special encoding is in use (LC_CTYPE is "C" | tjr | 2002-09-18 | 1 | -5/+23 |
| | | | | | | or "POSIX", other European locales). Use __sgetc() and __sputc() where possible to avoid a wasteful lock and unlock for each byte and to avoid function call overhead. | ||||
* | Reimplement the functionality of fgetrune(), fputrune(), and fungetrune() | tjr | 2002-09-18 | 1 | -2/+13 |
| | | | | | | here in terms of mbrtowc(), wcrtomb(), and the single-byte I/O functions. The rune I/O functions are about to become deprecated in favour of the ones provided by ISO C90 Amd. 1 and C99. | ||||
* | Basic support for wide character I/O: getwc(), fgetwc(), getwchar(), | tjr | 2002-08-13 | 1 | -0/+46 |
putwc(), fputwc(), putwchar(), ungetwc(), fwide(). |