aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/stdio/fgetws.c
Commit message (Collapse)AuthorAgeFilesLines
* Don't add integers to void pointers.Stefan Farfeleder2004-10-031-1/+2
| | | | Notes: svn path=/head/; revision=136092
* Read directly from the stdio buffer using the new __mbsnrtowcs() interfaceTim J. Robbins2004-07-211-14/+38
| | | | | | | instead of making repeated calls to __fgetwc(). Notes: svn path=/head/; revision=132498
* Lock the file once per call and use the unlocked fgetwc()/fputwc() variants.Tim J. Robbins2002-09-201-6/+14
| | | | Notes: svn path=/head/; revision=103678
* Reimplement the functionality of fgetrune(), fputrune(), and fungetrune()Tim J. Robbins2002-09-181-8/+5
| | | | | | | | | 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. Notes: svn path=/head/; revision=103523
* Style: One space between "restrict" qualifier and "*".Tim J. Robbins2002-09-061-1/+1
| | | | Notes: svn path=/head/; revision=103012
* Basic support for wide character I/O: getwc(), fgetwc(), getwchar(),Tim J. Robbins2002-08-131-0/+70
putwc(), fputwc(), putwchar(), ungetwc(), fwide(). Notes: svn path=/head/; revision=101776