summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdio/vfwscanf.c
Commit message (Collapse)AuthorAgeFilesLines
* No need to include floatio.h here: vfscanf() no longer uses anythingtjr2002-11-011-1/+0
| | | | it defines.
* The field width for single-byte string conversions (%c, %s, %[) is thetjr2002-10-171-33/+88
| | | | | | maximum number of bytes that may be stored in the array, not the maximum number of wide characters to read. The wording of the standard unfortunately does not make this clear.
* Remove an unneeded call to _sfrefill() that was missed in the conversiontjr2002-09-241-6/+0
| | | | | from vfscanf() to vfwscanf(). It doesn't hurt to have it there, but it's redundant since __fgetwc() will refill the buffer if it needs to.
* Add implementations of wscanf() and related functions: fwscanf(), swscanf(),tjr2002-09-231-0/+748
vfwscanf(), vswscanf(), vwscanf(). As the name suggests, these are wide- character versions of the scanf() family of functions.
OpenPOWER on IntegriCloud