| Commit message (Expand) | Author | Age | Files | Lines |
| * | mdoc(7) police: formatting nits. | Ruslan Ermilov | 2002-11-29 | 1 | -1/+1 |
| * | libc_r wasn't so tied to libc for 22 months. | Ruslan Ermilov | 2002-11-18 | 1 | -3/+1 |
| * | bde points out that the LIBC_MAJOR macro doesn't exist and requests | Warner Losh | 2002-11-14 | 1 | -3/+6 |
| * | Restore Peter's version of static __sF. There's too much pain for it | Warner Losh | 2002-11-10 | 1 | -1/+4 |
| * | Backout "compatibility hack" for __sF. | Alfred Perlstein | 2002-11-04 | 2 | -9/+1 |
| * | Provide a hook to make __sF visible outside of libc for commercial apps | Alfred Perlstein | 2002-11-02 | 2 | -1/+9 |
| * | No need to include floatio.h here: vfscanf() no longer uses anything | Tim J. Robbins | 2002-11-01 | 2 | -2/+0 |
| * | Make __sF static. This can not be allowed to exist in 5.x. | Alfred Perlstein | 2002-10-31 | 1 | -1/+1 |
| * | Cross-reference putc(3). | Tim J. Robbins | 2002-10-28 | 1 | -0/+1 |
| * | The ORIENTLOCK macro is no longer needed since all functions use | Tim J. Robbins | 2002-10-25 | 1 | -7/+0 |
| * | Cross-reference fmtcheck(3). | Tim J. Robbins | 2002-10-20 | 1 | -0/+1 |
| * | Give in on the __sF stuff. I have a better fix in mind that is future | Peter Wemm | 2002-10-19 | 1 | -1/+1 |
| * | Indent code example with one tab, not two, for consistency with the rest. | Tim J. Robbins | 2002-10-19 | 1 | -8/+8 |
| * | Fix off-by-one error when pushing back a multibyte sequence in | Tim J. Robbins | 2002-10-17 | 1 | -2/+6 |
| * | Make part of the previous change clearer; check flags for SUPPRESS directly | Tim J. Robbins | 2002-10-17 | 1 | -7/+7 |
| * | The field width for single-byte string conversions (%c, %s, %[) is the | Tim J. Robbins | 2002-10-17 | 1 | -33/+88 |
| * | Count field width correctly for suppressed multibyte fields (%*lc, | Tim J. Robbins | 2002-10-16 | 1 | -60/+84 |
| * | Set the error bit on the stream if an encoding error occurs. Improve | Tim J. Robbins | 2002-10-16 | 6 | -15/+52 |
| * | Add support for the XSI %C and %S formats, which are the same as %lc | Tim J. Robbins | 2002-10-16 | 2 | -0/+24 |
| * | Use a weak reference instead of a macro to make vfscanf an alias | Tim J. Robbins | 2002-10-14 | 2 | -0/+4 |
| * | Ignore TMPDIR if the application is setugid. | Kris Kennaway | 2002-10-13 | 1 | -1/+2 |
| * | Add restrict type-qualifier. | Mike Barcroft | 2002-10-12 | 16 | -28/+29 |
| * | Describe the restrictions on seeking on wide character streams, and also | Tim J. Robbins | 2002-10-12 | 1 | -3/+15 |
| * | Zap the early-adopter transition aid before we get into serious | Peter Wemm | 2002-10-11 | 1 | -4/+1 |
| * | Cross-reference between byte and wide-character stdio functions. Remove | Tim J. Robbins | 2002-10-10 | 7 | -13/+13 |
| * | Remove masking macros for getwc(), putwc(), putwchar() and getwchar(). | Tim J. Robbins | 2002-09-28 | 4 | -12/+4 |
| * | Back out previous, free the buffer when __vfprintf() fails and don't bother | Tim J. Robbins | 2002-09-26 | 1 | -19/+13 |
| * | Back out previous and solve the problems a different way: move va_start/ | Tim J. Robbins | 2002-09-26 | 1 | -20/+13 |
| * | Correctly handle the case where __vfwprintf() fails because it runs out | Tim J. Robbins | 2002-09-26 | 1 | -1/+7 |
| * | Sync with OpenBSD: avoid memory leak when __vfprintf() fails because it | Tim J. Robbins | 2002-09-26 | 2 | -24/+39 |
| * | Add cross-references between wide character and single-byte character | Tim J. Robbins | 2002-09-24 | 3 | -2/+6 |
| * | Remove an unneeded call to _sfrefill() that was missed in the conversion | Tim J. Robbins | 2002-09-24 | 1 | -6/+0 |
| * | Use the new va_copy macro to copy variable argument lists instead of | Tim J. Robbins | 2002-09-24 | 2 | -2/+2 |
| * | Add implementations of wscanf() and related functions: fwscanf(), swscanf(), | Tim J. Robbins | 2002-09-23 | 9 | -6/+1530 |
| * | Implement the %lc, %ls and %[ conversions, which read sequences of wide | Tim J. Robbins | 2002-09-23 | 2 | -16/+137 |
| * | The character argument for __ungetwc() should be wint_t instead of wchar_t. | Tim J. Robbins | 2002-09-23 | 1 | -1/+1 |
| * | Add an unlocked version of ungetwc(), __ungetwc(), that __vfwscanf() | Tim J. Robbins | 2002-09-22 | 2 | -9/+22 |
| * | Delete stray reference to vsnprintf(). | Tim J. Robbins | 2002-09-21 | 1 | -3/+2 |
| * | Add implementations of the wprintf() family of functions, which perform | Tim J. Robbins | 2002-09-21 | 10 | -4/+2434 |
| * | Lock the file once per call and use the unlocked fgetwc()/fputwc() variants. | Tim J. Robbins | 2002-09-20 | 2 | -9/+20 |
| * | Lock and unlock the file once per call and use the unlocked version of | Tim J. Robbins | 2002-09-20 | 1 | -7/+11 |
| * | Introduce unlocked versions of fputwc() and fgetwc() called __fputwc() | Tim J. Robbins | 2002-09-20 | 3 | -18/+44 |
| * | Implement the %ls and %lc conversions for printing wide character strings | Tim J. Robbins | 2002-09-19 | 2 | -14/+110 |
| * | Optimise the common case where no special encoding is in use (LC_CTYPE is "C" | Tim J. Robbins | 2002-09-18 | 2 | -8/+48 |
| * | Logic error in previous: don't exit the loop when an incomplete multibyte | Tim J. Robbins | 2002-09-18 | 1 | -1/+1 |
| * | Reimplement the functionality of fgetrune(), fputrune(), and fungetrune() | Tim J. Robbins | 2002-09-18 | 5 | -25/+61 |
| * | Fix vsnprintf(3) memory leak for size == 0. | Maxim Konovalov | 2002-09-17 | 1 | -0/+6 |
| * | Convert eight space indents to tabs in the "*" format handling code. | Tim J. Robbins | 2002-09-16 | 1 | -43/+43 |
| * | Style: One space between "restrict" qualifier and "*". | Tim J. Robbins | 2002-09-06 | 16 | -24/+24 |
| * | Print a '-' sign for negative zero. Tested with | Jens Schweikhardt | 2002-08-27 | 1 | -7/+2 |