about summary refs log tree commit diff
path: root/src/internal/intparse.h
Commit message (Collapse)AuthorAgeFilesLines
* use the new integer parser (FILE/shgetc based) for strtol, wcstol, etc.Rich Felker2012-04-161-11/+0
|
* new restartable integer parsing framework.Rich Felker2011-07-141-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.