aboutsummaryrefslogtreecommitdiff
path: root/lib/strtoofft.c
AgeCommit message (Collapse)Author
2007-11-05removed space after if and while before the parenthesis for better source codeDaniel Stenberg
consistency
2007-08-04Patrick Monnerat fixed curl_easy_escape() and curlx_strtoll() to work onDaniel Stenberg
non-ASCII systems.
2007-02-16use macros ERRNO, SET_ERRNO(), SOCKERRNO and SET_SOCKERRNO() for errno handlingYang Tse
2006-10-17Avoid typecasting a signed char to an int when using is*() functions, as thatDaniel Stenberg
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.
2006-01-09Made the copyright year match the latest modification's year.Daniel Stenberg
2005-08-11Added comment about strtoimax()Daniel Stenberg
2004-10-10Use LL suffix for long long constants if the compiler supports it, to preventDaniel Stenberg
warnings.
2004-10-08killed trailing whitespaceDaniel Stenberg
2004-02-19Remade to use curlx_-prefix. This means this function can be compiled andDaniel Stenberg
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.
2004-01-22re-intended the code curl-styleDaniel Stenberg
2004-01-22return curl_off_t instead of long long, to work on more platformsDaniel Stenberg
2004-01-07updated year in the copyright stringDaniel Stenberg
2004-01-05new files for the large file support number parsingDaniel Stenberg