about summary refs log tree commit diff
path: root/src/stdlib/wcstoumax.c
Commit message (Collapse)AuthorAgeFilesLines
* use the new integer parser (FILE/shgetc based) for strtol, wcstol, etc.Rich Felker2012-04-161-35/+0
|
* fix various bugs in new integer parser frameworkRich Felker2011-07-141-2/+3
| | | | | | | | | | 1. my interpretation of subject sequence definition was wrong. adjust parser to conform to the standard. 2. some code for handling tail overflow case was missing (forgot to finish writing it). 3. typo (= instead of ==) caused ERANGE to wrongly behave like EINVAL
* fix wcsto[iu]max with high charactersRich Felker2011-07-141-2/+1
| | | | | | | | stopping without letting the parser see a stop character prevented getting a result. so treat all high chars as the null character and pass them into the parser. also eliminated ugly tmp var using compound literals.
* new restartable integer parsing framework.Rich Felker2011-07-141-27/+14
| | | | | | | | | 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.
* fix broken unsigned comparison in wcstoumaxRich Felker2011-04-071-1/+1
|
* more header fixes, minor warning fixRich Felker2011-02-141-0/+1
|
* initial check-in, version 0.5.0 v0.5.0Rich Felker2011-02-121-0/+47