summaryrefslogtreecommitdiff
path: root/lib/strtoofft.c
Commit message (Collapse)AuthorAgeFilesLines
* removed space after if and while before the parenthesis for better source codeDaniel Stenberg2007-11-051-22/+22
| | | | consistency
* Patrick Monnerat fixed curl_easy_escape() and curlx_strtoll() to work onDaniel Stenberg2007-08-041-0/+27
| | | | non-ASCII systems.
* use macros ERRNO, SET_ERRNO(), SOCKERRNO and SET_SOCKERRNO() for errno handlingYang Tse2007-02-161-2/+2
|
* Avoid typecasting a signed char to an int when using is*() functions, as thatDaniel Stenberg2006-10-171-2/+2
| | | | | | | | | could very well cause a negate number get passed in and thus cause reading outside of the array usually used for this purpose. We avoid this by using the uppercase macro versions introduced just now that does some extra crazy typecasts to avoid byte codes > 127 to cause negative int values.
* Made the copyright year match the latest modification's year.Daniel Stenberg2006-01-091-1/+1
|
* Added comment about strtoimax()Daniel Stenberg2005-08-111-0/+8
|
* Use LL suffix for long long constants if the compiler supports it, to preventDaniel Stenberg2004-10-101-2/+2
| | | | warnings.
* killed trailing whitespaceDaniel Stenberg2004-10-081-5/+5
|
* Remade to use curlx_-prefix. This means this function can be compiled andDaniel Stenberg2004-02-191-1/+1
| | | | | | linked separately by the application. This function is not provided by the libcurl API. It can only be accessed by apps if they compile and use this particular source code.
* re-intended the code curl-styleDaniel Stenberg2004-01-221-26/+30
|
* return curl_off_t instead of long long, to work on more platformsDaniel Stenberg2004-01-221-3/+3
|
* updated year in the copyright stringDaniel Stenberg2004-01-071-1/+1
|
* new files for the large file support number parsingDaniel Stenberg2004-01-051-0/+153