about summary refs log tree commit diff
path: root/src/stdio/vsscanf.c
Commit message (Collapse)AuthorAgeFilesLines
* new scanf implementation and corresponding integer parser/converterRich Felker2012-04-161-14/+8
| | | | | | | | | | | | | | | advantages over the old code: - correct results for floating point (old code was bogus) - wide/regular scanf separated so scanf does not pull in wide code - well-defined behavior on integers that overflow dest type - support for %[a-b] ranges with %[ (impl-defined by widely used) - no intermediate conversion of fmt string to wide string - cleaner, easier to share code with strto* functions - better standards conformance for corner cases the old code remains in the source tree, as the wide versions of the scanf-family functions are still using it. it will be removed when no longer needed.
* initial check-in, version 0.5.0 v0.5.0Rich Felker2011-02-121-0/+21