aboutsummaryrefslogtreecommitdiff
path: root/lib/curlx.h
AgeCommit message (Collapse)Author
2010-12-21Typo fixes.Brad Hards
2010-03-24remove the CVSish $Id$ linesDaniel Stenberg
2010-02-26fix compiler warningYang Tse
2010-02-22convert Curl_ultous() and Curl_ultouc() functions to curlx_ultous() andYang Tse
curlx_ultouc(), exposing them through curlx.h to allow proper code reuse later in our test harness.
2009-07-09- Eric Wong introduced curlx_nonblock() that the curl tool now (re-)uses forDaniel Stenberg
setting a file descriptor non-blocking. Used by the functionality Eric himself brough on June 15th.
2008-10-16Renamed Curl_ascii_equal to Curl_raw_equal and bugfixed the my_toupper functionDaniel Stenberg
used in strequal.c so now all test cases run fine for me again.
2008-10-15- Pascal Terjan filed bug #2154627Daniel Stenberg
(http://curl.haxx.se/bug/view.cgi?id=2154627) which pointed out that libcurl uses strcasecmp() in multiple places where it causes failures when the Turkish locale is used. This is because 'i' and 'I' isn't the same letter so strcasecmp() on those letters are different in Turkish than in English (or just about all other languages). I thus introduced a totally new internal function in libcurl (called Curl_ascii_equal) for doing case insentive comparisons for english-(ascii?) style strings that thus will make "file" and "FILE" match even if the Turkish locale is selected.
2006-10-27Update copyright year, since the file has been modifiedYang Tse
2006-07-06Undefine symbols before redefining them.Gisle Vanem
2004-05-24delete trailing whitespaceDaniel Stenberg
2004-04-30New header file that offers easy access to the curlx_ functions for an app.Daniel Stenberg
curlx_ functions are NOT part of the offical API, but only available as source code functions from the lib directory in case of need.