Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove bogus FBSDID. | obrien | 2004-05-02 | 1 | -3/+1 |
| | |||||
* | Merge vfscanf.c, v1.37: | das | 2004-05-02 | 1 | -8/+7 |
| | | | | - s/#ifdef FLOATING_POINT/#ifndef NO_FLOATING_POINT/ | ||||
* | Prepare to handle trivial state-dependent encodings. Full support for | tjr | 2004-04-07 | 1 | -6/+11 |
| | | | | | state-dependent encodings with locking shifts will come later if there is demand for it. | ||||
* | Merge vfscanf.c,v 1.35. | das | 2004-01-31 | 1 | -4/+10 |
| | |||||
* | Make intentions explicit with additional parenthesis. | nectar | 2004-01-06 | 1 | -4/+4 |
| | |||||
* | Pass NULL instead of a pointer to a zeroed mbstate_t object. | tjr | 2003-11-05 | 1 | -10/+6 |
| | |||||
* | Fix two incorrect uses of sizeof: we need to divide the size of the buffer | tjr | 2003-07-05 | 1 | -11/+6 |
| | | | | | | by sizeof(wchar_t) to get the number of wide characters it contains. Remove the !hardway micro-optimisation from the CT_INT case to avoid having to fix it for wide characters. | ||||
* | Merge recent floating point conversion changes from vfscanf.c. | tjr | 2003-07-05 | 1 | -93/+175 |
| | |||||
* | No need to include floatio.h here: vfscanf() no longer uses anything | tjr | 2002-11-01 | 1 | -1/+0 |
| | | | | it defines. | ||||
* | The field width for single-byte string conversions (%c, %s, %[) is the | tjr | 2002-10-17 | 1 | -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 conversion | tjr | 2002-09-24 | 1 | -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(), | tjr | 2002-09-23 | 1 | -0/+748 |
vfwscanf(), vswscanf(), vwscanf(). As the name suggests, these are wide- character versions of the scanf() family of functions. |