aboutsummaryrefslogtreecommitdiff
path: root/lib/curl_fnmatch.c
AgeCommit message (Collapse)Author
2011-06-10unittest: mark all unit tested functionsDaniel Stenberg
With "@unittest: [num]" in the header comment for each tested function. Shows we have a log way to go still...
2011-04-27source cleanup: unify look, style and indent levelsDaniel Stenberg
By the use of a the new lib/checksrc.pl script that checks that our basic source style rules are followed.
2010-06-10replace isprint() with ISPRINT()Yang Tse
2010-06-02include libcurl standard internal headersYang Tse
2010-06-02make setup.h first included fileYang Tse
2010-05-31fix compiler warning: enumerated type mixed with another typeYang Tse
2010-05-28lib: eliminate 'statement not reached' warningsKamil Dudka
2010-05-27curl_fnmatch: remove use of register keywordTor Arntsen
Using the 'register' keyword rarely improves anything with modern compilers and architectures.
2010-05-21curl_fnmatch: Use int not bool when function returns intTor Arntsen
bool in curl internals is unsigned char and should not be used to receive return value from functions returning int - this fails when using IBM VisualAge and Tru64 compilers.
2010-05-16ftp wildcard: a new option CURLOPT_FNMATCH_DATAKamil Dudka
2010-05-12style: minor whitespace changeDaniel Stenberg
2010-05-12FTP: WILDCARDMATCH/CHUNKING/FNMATCH addedPavel Raiskup