summaryrefslogtreecommitdiff
AgeCommit message (Expand)AuthorFilesLines
2012-04-19fix really bad breakage in strtol, etc.: failure to accept leading spacesRich Felker5-10/+9
2012-04-18fix header typoRich Felker1-1/+1
2012-04-18legacy junk compatibility grab-bagRich Felker6-7/+36
2012-04-18fix incorrect macro name for MATH_ERREXCEPT in math.hRich Felker1-1/+1
2012-04-18release notes for 0.8.8v0.8.8Rich Felker1-0/+34
2012-04-18fix typo in exponent reading code or floatsRich Felker1-1/+1
2012-04-17fix wide scanf's handling of input failure on %c, and simplify %[Rich Felker1-5/+6
2012-04-17fix failure to distinguish input/match failure in wide %[ scanfRich Felker2-2/+4
2012-04-17fix over-read in %ls with non-wide scanfRich Felker1-0/+1
2012-04-17fix broken %s and %[ with no width specifier in wide scanfRich Felker1-3/+7
2012-04-17fix failure to read infinity in scanfRich Felker1-3/+4
2012-04-17fix failure of int parser to unget an initial mismatching characterRich Felker1-0/+1
2012-04-17make wide scanf %[ respect widthRich Felker1-2/+3
2012-04-17fix wide scanf to respect field width for stringsRich Felker1-4/+7
2012-04-17fix some bugs in scanf %[ handling detected while writing the wide versionRich Felker1-4/+4
2012-04-17introduce new wide scanf code and remove the last remnants of old scanfRich Felker4-524/+312
2012-04-17avoid depending on POSIX symbol in code used from plain C functionsRich Felker1-1/+3
2012-04-17avoid null pointer dereference on %*p fields in scanfRich Felker1-1/+1
2012-04-17also ensure that write buffer is bounded when __stdio_write returnsRich Felker1-0/+1
2012-04-17fix buffer overflow in vfprintf on long writes to unbuffered filesRich Felker1-1/+2
2012-04-16fix %lf, etc. with printfRich Felker1-0/+2
2012-04-16better description for errno==0Rich Felker1-1/+1
2012-04-16implement wcstod and familyRich Felker1-0/+61
2012-04-16avoid hitting eof in wcstolRich Felker1-2/+3
2012-04-16use the new integer parser (FILE/shgetc based) for strtol, wcstol, etc.Rich Felker14-405/+120
2012-04-16new scanf implementation and corresponding integer parser/converterRich Felker6-30/+450
2012-04-16fix buggy limiter handling in shgetcRich Felker1-4/+3
2012-04-16wordexp must set the we_offs entries of we_wordv to null pointersRich Felker1-0/+4
2012-04-16fix crash in wordfree if we_offs is not initialized by the callerRich Felker1-0/+2
2012-04-16fix broken shgetc limiter logic (wasn't working)Rich Felker2-2/+5
2012-04-16floatscan: fix incorrect count of leading nonzero digitsRich Felker1-1/+1
2012-04-15move F_DUPFD_CLOEXEC out of bitsRich Felker4-6/+2
2012-04-15add F_SETSIG and F_GETSIG (linux specific) to fcntl.hRich Felker3-0/+6
2012-04-14fix signedness error handling invalid multibyte sequences in regexecRich Felker1-2/+2
2012-04-13rename __sa_restorer to sa_restorer in struct sigactionRich Felker1-1/+1
2012-04-13remove invalid code from TRERich Felker1-14/+0
2012-04-13fix broken regerror (typo) and missing messageRich Felker1-2/+2
2012-04-13use fast version of the int reading code for the high-order digits tooRich Felker1-3/+13
2012-04-13use macros instead of inline functions in shgetc.hRich Felker1-20/+4
2012-04-13fix spurious overflows in strtoull with small basesRich Felker1-7/+3
2012-04-12remove magic numbers from floatscanRich Felker1-5/+5
2012-04-12optimize more integer cases in floatscan; comment the whole procedureRich Felker1-8/+27
2012-04-11revert invalid optimization in floatscanRich Felker1-2/+2
2012-04-11fix stupid typo in floatscan that caused excess rounding of some valuesRich Felker1-1/+1
2012-04-11add some more useful suggested options to config.mak templateRich Felker1-0/+6
2012-04-11Merge remote branch 'nsz/master'Rich Felker2-5/+6
2012-04-11optimize floatscan downscaler to skip results that won't be neededRich Felker1-2/+3
2012-04-11simplify/debloat radix point alignment code in floatscanRich Felker1-9/+4
2012-04-11optimize floatscan: avoid excessive upscalingRich Felker1-27/+27
2012-04-11fix incorrect initial count in shgetc when data is already bufferedRich Felker1-1/+1