summaryrefslogtreecommitdiff
path: root/lib/libc/stdio
Commit message (Expand)AuthorAgeFilesLines
* Sort sections.Ruslan Ermilov2005-01-203-55/+55
* Scheduled mdoc(7) sweep.Ruslan Ermilov2005-01-111-1/+3
* Document that the length modifier l is ignored for floating pointStefan Farfeleder2004-10-161-1/+3
* Don't add integers to void pointers.Stefan Farfeleder2004-10-031-1/+2
* Don't forget to va_end() the va_list we get from va_copy().Dag-Erling Smørgrav2004-08-262-0/+2
* note that it is the caller's responsibility to free any buffer passedAlfred Perlstein2004-08-241-0/+5
* Fix an off-by-one bug that caused the first character of the buffer toTim J. Robbins2004-08-061-2/+1
* Read directly from the stdio buffer using the new __mbsnrtowcs() interfaceTim J. Robbins2004-07-211-14/+38
* Implement the GNU extensions of mbsnrtowcs() and wcsnrtombs(). These areTim J. Robbins2004-07-211-1/+2
* Use __wcsrtombs() and __sfvwrite() to convert and write the wide characterTim J. Robbins2004-07-211-8/+25
* Call __mbrtowc() and __wcrtomb() directly instead of taking detoursTim J. Robbins2004-07-203-3/+6
* Add a cross reference to fgetwln(3).Tim J. Robbins2004-07-161-0/+1
* Add fgetwln(), a wide character version of fgetln().Tim J. Robbins2004-07-163-2/+192
* Rename slbexpand() to __slbexpand() and make it available outsideTim J. Robbins2004-07-162-4/+5
* Slightly reorganize and simplify.Tim J. Robbins2004-07-091-24/+11
* Add commentary explaining why we return EBADF upon attempts to fflush() aColin Percival2004-07-041-0/+12
* Eliminate double whitespace.Ruslan Ermilov2004-07-031-2/+2
* Mechanically kill hard sentence breaks.Ruslan Ermilov2004-07-021-4/+8
* Markup, grammar, and spelling fixes.Ruslan Ermilov2004-06-301-4/+3
* Spelling fixes.Mike Pritchard2004-06-211-1/+1
* The third operand of the conditional operator should have type void too.Stefan Farfeleder2004-06-082-2/+2
* Rename cantwrite() to prepwrite(). The latter is less confusing,David Schultz2004-06-081-4/+1
* Rename cantwrite() to prepwrite(). The latter is less confusing,David Schultz2004-06-084-5/+6
* Set errno to EBADF on attempts to write to a stream that is notDavid Schultz2004-06-081-2/+5
* Provide trivial macro implementations of getwc(), getwchar(), putwc() andTim J. Robbins2004-05-254-0/+8
* Perform conversions straight from the stream buffer instead of scanningTim J. Robbins2004-05-221-18/+19
* Associate a multibyte conversion state object with each stream. Reset itTim J. Robbins2004-05-227-42/+24
* Remove bogus FBSDID.David E. O'Brien2004-05-021-3/+1
* Fix damaged FBSDID.David E. O'Brien2004-05-021-3/+1
* Merge vfscanf.c, v1.37:David Schultz2004-05-021-8/+7
* Merge vfprintf.c, v1.65:David Schultz2004-05-021-24/+17
* - To make it easier to compile *printf() and *scanf() withoutDavid Schultz2004-05-022-31/+21
* Use the correct size to allocate, copy and clear argument type tablesTim J. Robbins2004-04-222-12/+18
* Prepare to handle trivial state-dependent encodings. Full support forTim J. Robbins2004-04-079-21/+61
* Mention that funopen() uses fpos_t incorrectly in the BUGS section.Tim J. Robbins2004-03-201-1/+9
* Improve documentation for fgetpos() and fsetpos(), and discourageTim J. Robbins2004-03-201-13/+21
* Do not redundantly set the stream orientation in getc(), putc(), andTim J. Robbins2004-03-196-6/+12
* Update list of macros defined in <stdio.h>.Tim J. Robbins2004-03-171-1/+17
* Re-add description of putc() macro (back out rev. 1.13.)Tim J. Robbins2004-03-171-2/+8
* Re-add text that says getc() is a macro (back out rev. 1.16.)Tim J. Robbins2004-03-171-1/+2
* Re-add macro versions of getc(), getchar(), putc(), putchar(), feof(),Tim J. Robbins2004-03-176-34/+12
* Refer to "wide characters" instead of "wide-characters".Tim J. Robbins2004-03-163-15/+15
* Set stream orientation in ungetc() instead of __ungetc(). This avoidsTim J. Robbins2004-03-101-2/+1
* Remove duplicate check for EOF from ungetc(); __ungetc() already checks.Tim J. Robbins2004-03-101-2/+0
* Call __sputc() directly in fputc() instead of taking an expensiveTim J. Robbins2004-03-101-1/+1
* Call __sgetc() directly in getchar() instead of taking an expensiveTim J. Robbins2004-03-101-1/+1
* Set the stream orientation explicitly in fgetln() instead of relying onTim J. Robbins2004-03-101-0/+1
* Set stream orientation in puts().Tim J. Robbins2004-03-101-0/+2
* Backout the previous revision due to objections.John Birrell2004-03-092-10/+4
* On 4.X it was possible for an application to initialise a local FILEJohn Birrell2004-03-092-4/+10