about summary refs log tree commit diff
path: root/src/stdio
Commit message (Expand)AuthorAgeFilesLines
...
* fix over-read in %ls with non-wide scanfRich Felker2012-04-171-0/+1
* fix broken %s and %[ with no width specifier in wide scanfRich Felker2012-04-171-3/+7
* make wide scanf %[ respect widthRich Felker2012-04-171-2/+3
* fix wide scanf to respect field width for stringsRich Felker2012-04-171-4/+7
* fix some bugs in scanf %[ handling detected while writing the wide versionRich Felker2012-04-171-4/+4
* introduce new wide scanf code and remove the last remnants of old scanfRich Felker2012-04-174-524/+312
* avoid depending on POSIX symbol in code used from plain C functionsRich Felker2012-04-171-1/+3
* avoid null pointer dereference on %*p fields in scanfRich Felker2012-04-171-1/+1
* also ensure that write buffer is bounded when __stdio_write returnsRich Felker2012-04-171-0/+1
* fix buffer overflow in vfprintf on long writes to unbuffered filesRich Felker2012-04-171-1/+2
* fix %lf, etc. with printfRich Felker2012-04-161-0/+2
* new scanf implementation and corresponding integer parser/converterRich Felker2012-04-163-30/+343
* fix scanf handling of "0" (followed by immediate EOF) with "%x"Rich Felker2012-03-131-11/+6
* make stdio open, read, and write operations cancellation pointsRich Felker2012-02-023-5/+28
* simplify atexit and fflush-on-exit handlingRich Felker2011-10-141-1/+4
* don't crash on null strings in printfRich Felker2011-09-281-1/+1
* avoid setting FILE lock count when not using flockfileRich Felker2011-09-211-1/+1
* more fmemopen null termination fixesRich Felker2011-09-041-2/+3
* fix some fmemopen behaviorsRich Felker2011-09-041-4/+7
* fmemopen: fix eof handling, hopefully right this timeRich Felker2011-09-041-3/+4
* fmemopen fixesRich Felker2011-09-041-1/+3
* memstreams: fix incorrect handling of file pos > current sizeRich Felker2011-09-042-4/+4
* optimize seek function for memory streamsRich Felker2011-09-042-24/+6
* fix twos complement overflow bug in mem streams boundary checkRich Felker2011-09-042-2/+2
* implement fmemopenRich Felker2011-09-031-18/+66
* fix some length calculations in memory streamsRich Felker2011-09-032-3/+3
* implement open_wmemstreamRich Felker2011-09-031-0/+95
* implement open_memstreamRich Felker2011-09-031-0/+94
* fix crash in dns code with new stdio locking codeRich Felker2011-08-011-0/+1
* add proper fuxed-based locking for stdioRich Felker2011-07-3014-39/+44
* eliminate dependence of perror on printfRich Felker2011-07-301-10/+5
* fix logic error in freadRich Felker2011-07-161-6/+1
* printf: "if a precision is specified, the '0' flag shall be ignored."Rich Felker2011-07-041-1/+1
* zero precision with zero value should not inhibit prefix/width printingRich Felker2011-07-041-1/+4
* printf("%#x",0) should print 0 not 0x0Rich Felker2011-07-041-1/+1
* fix logic in __fwritingRich Felker2011-06-301-1/+1
* add and consolidate nasty stdio_ext junkRich Felker2011-06-303-17/+57
* implement the nonstandard GNU function fpurgeRich Felker2011-06-301-0/+11
* avoid 64bit warnings when using pointers as entropy for temp namesRich Felker2011-06-132-2/+4
* fix the last known rounding bug in floating point printingRich Felker2011-05-111-3/+4
* reduce some ridiculously large spin countsRich Felker2011-05-061-1/+1
* fix fclose return status logic, againRich Felker2011-05-021-1/+2
* fix undefined call order in fclose, possible lost output depending on compilerRich Felker2011-05-011-1/+1
* minor optimization in puts: use inline putc_unlocked macro for newlineRich Felker2011-05-011-1/+1
* fix 2 eof-related bugs in scanfRich Felker2011-04-251-3/+4
* clean up handling of thread/nothread mode, lockingRich Felker2011-04-172-5/+1
* debloat: use __syscall instead of syscall where possibleRich Felker2011-04-174-5/+5
* avoid setting errno when checking for ttyRich Felker2011-04-152-2/+2
* make tmpfile slightly more efficient (use unlink syscall instead of remove)Rich Felker2011-04-141-1/+1
* fix printf("%.9g", 1.1) and similar not dropping trailing zerosRich Felker2011-04-121-1/+3