about summary refs log tree commit diff
path: root/src/stdio
Commit message (Expand)AuthorAgeFilesLines
* add bsd fgetln functionRich Felker2012-08-112-0/+20
* minor but worthwhile optimization in printf: avoid expensive strspnRich Felker2012-08-101-4/+2
* trivial optimization to printf: avoid wasted call frameRich Felker2012-08-101-1/+1
* putw is supposed to return 0 (not the value written) on successRich Felker2012-07-041-1/+1
* make sure getw/putw agree with prototypes by defining _GNU_SOURCERich Felker2012-07-042-0/+2
* fix missing function declarations for __stdio_exitRich Felker2012-07-022-0/+4
* fix fwrite return value when full write does not succeedRich Felker2012-06-201-1/+1
* avoid cancellation in pcloseRich Felker2012-06-201-3/+4
* fix invalid memory access in pcloseRich Felker2012-06-201-1/+2
* make popen cancellation-safeRich Felker2012-06-201-0/+7
* popen: handle issues with fd0/1 being closedRich Felker2012-06-201-3/+3
* fix another oob pointer arithmetic issue in printf floating pointRich Felker2012-06-201-1/+1
* minor perror behavior fixRich Felker2012-06-201-1/+1
* fix pointer overflow bug in floating point printfRich Felker2012-06-191-3/+3
* add new stdio extension functions to make gnulib happyRich Felker2012-06-191-0/+24
* stdio: handle file position correctly at program exitRich Felker2012-06-193-3/+35
* minor cleanup in fflushRich Felker2012-06-191-5/+1
* remove flush hook cruft that was never used from stdioRich Felker2012-06-192-4/+0
* change stdio_ext __freading/__fwriting semantics slightlyRich Felker2012-06-171-2/+2
* fdopen should set errno when it fails due to invalid mode stringRich Felker2012-06-171-1/+4
* fix %ls breakage in last printf fixRich Felker2012-06-081-2/+2
* fix printf %ls with precision limit over-read issueRich Felker2012-06-081-2/+2
* fix scanf bug reading literals after width-limited fieldRich Felker2012-06-071-0/+1
* add some ugly aliases for LSB ABI compatibilityRich Felker2012-06-027-0/+8
* avoid using pthread cleanup push/pop in stdio when not neededRich Felker2012-05-252-6/+14
* fix uninitialized var in vfwprintf printing 0-prec stringRich Felker2012-05-041-1/+1
* fix really bad breakage in strtol, etc.: failure to accept leading spacesRich Felker2012-04-191-1/+1
* fix wide scanf's handling of input failure on %c, and simplify %[Rich Felker2012-04-171-5/+6
* fix failure to distinguish input/match failure in wide %[ scanfRich Felker2012-04-172-2/+4
* 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