summaryrefslogtreecommitdiff
path: root/src/internal/intparse.h
AgeCommit message (Collapse)AuthorLines
2011-07-14new restartable integer parsing framework.Rich Felker-0/+11
this fixes a number of bugs in integer parsing due to lazy haphazard wrapping, as well as some misinterpretations of the standard. the new parser is able to work character-at-a-time or on whole strings, making it easy to support the wide functions without unbounded space for conversion. it will also be possible to update scanf to use the new parser.