summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdlib/strtoimax.c
Commit message (Collapse)AuthorAgeFilesLines
* Per Regents of the University of Calfornia letter, remove advertisingimp2007-01-091-4/+0
| | | | | | clause. # If I've done so improperly on a file, please let me know.
* Whitespace/style tweaking of prev. commit.ache2005-01-211-4/+3
| | | | Noted by: bde
* POSIX says that 0[xX] prefix is _optional_ even in base 16 case, make itache2005-01-211-1/+5
| | | | | | | | | | really so. "If the value of base is 16, the characters 0x or 0X may optionally precede the sequence of letters and digits, following the sign if present." Found by: joerg
* Correct typos, mostly s/ a / an / where appropriate. Some whitespace cleanup,schweikh2003-01-011-1/+1
| | | | especially in troff files.
* Style: One space between "restrict" qualifier and "*".tjr2002-09-061-1/+1
|
* - Add the 'restrict' qualifier to the function prototypes androbert2002-08-151-4/+1
| | | | | | | | definitions of the functions that convert strings to numbers and are defined by IEEE Std 1003-1.2001. - Use ANSI-C function definitions for all of the functions mentioned above plus strtouq and strtoq. - Update the prototypes in the manual pages.
* Fix the style of the SCM ID's.obrien2002-03-221-2/+2
| | | | I believe have made all of libc .c's as consistent as possible.
* Return 'c' back to signed due to potential comparison problemsache2001-12-071-10/+12
| | | | | | Use simpler test for valid ranges Submitted by: bde
* Make it works for non ASCII compatible encodings too.ache2001-12-021-7/+7
| | | | The only assumption left is that 'A'..'Z' 'a'..'z' both are contiguous
* Back out national digits support, POSIX explicetely disallows it:ache2001-11-291-1/+1
| | | | | | | | | | | The definition of character class digit requires that only ten characters -the ones defining digits- can be specified; alternate digits (for example, Hindi or Kanji) cannot be specified here. However, the encoding may vary if an implementation supports more than one encoding. The definition of character class xdigit requires that the characters included in character class digit are included here also and allows for different symbols for the hexadecimal digits 10 through 15.
* Don't ever assume that isdigit() is always subset of isxdigit()ache2001-11-281-1/+1
|
* Implement strtoimax() and strtoumax()fenner2001-11-281-0/+142
OpenPOWER on IntegriCloud