summaryrefslogtreecommitdiff
path: root/lib/strtoofft.h
Commit message (Collapse)AuthorAgeFilesLines
* MSVC's __int64 data type is only available when _INTEGRAL_MAX_BITS >= 64Yang Tse2008-08-211-1/+1
|
* When using our internal curlx_strtoll function NEED_CURL_STRTOLL must be ↵Yang Tse2008-08-141-0/+1
| | | | | | defined, the source code of curlx_strtoll is excluded if NEED_CURL_STRTOLL isn't defined.
* CURL_LLONG_MIN should now be signedYang Tse2008-08-141-1/+1
|
* The size of long is a build time characteristic and as such it is now recordedYang Tse2008-08-131-1/+1
| | | | | in curlbuild.h as CURL_SIZEOF_LONG. Definition now done from configure process and in CVS curlbuild.h.dist for non-configure systems.
* Adjustment due to curl_off_t no longer following off_tYang Tse2008-08-131-41/+31
|
* s/SIZEOF_CURL_OFF_T/CURL_SIZEOF_CURL_OFF_T/gYang Tse2008-08-111-2/+2
|
* Added prototype for _strtoi64().Gisle Vanem2007-11-061-0/+1
|
* Some #if --> #ifdefPatrick Monnerat2007-08-071-1/+1
| | | | undef standard *printf before (re)defining them
* Watcom uses 'i64' suffix.Gisle Vanem2004-12-171-1/+1
|
* MSVC uses 'i64' suffix for 64-bit sizes.Gisle Vanem2004-10-101-1/+4
|
* If long is 8 bytes we can use strtol() to get 64 bit numbers and won't needDaniel Stenberg2004-10-101-3/+3
| | | | our strtoll() replacement function.
* Use LL suffix for long long constants if the compiler supports it, to preventDaniel Stenberg2004-10-101-5/+13
| | | | warnings.
* renamed the strtoofft() macro to curlx_strtoofft() to adjust to the curlx_*Daniel Stenberg2004-04-071-4/+4
| | | | concept, and added lib/README.curlx to explain details about it
* David Byron's work on making libcurl only require winsock 1.1 on WindowsDaniel Stenberg2004-03-031-1/+1
| | | | machines.
* make newer MSCV7 compilers use _strtoi64() as a strtoll() replacementDaniel Stenberg2004-02-231-3/+11
|
* oops, missed a define when I changed from Curl_ to curlx_Daniel Stenberg2004-02-201-1/+1
|
* Remade to use curlx_-prefix. This means this function can be compiled andDaniel Stenberg2004-02-191-3/+7
| | | | | | 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.
* include curl.h for the typedefDaniel Stenberg2004-01-231-0/+1
|
* return curl_off_t instead of long long, to work on more platformsDaniel Stenberg2004-01-221-1/+1
|
* use curl_off_t instead of off_t!Daniel Stenberg2004-01-221-7/+6
|
* updated year in the copyright stringDaniel Stenberg2004-01-071-1/+1
|
* new files for the large file support number parsingDaniel Stenberg2004-01-051-0/+50