1/*************************************************************************** 2 * _ _ ____ _ 3 * Project ___| | | | _ \| | 4 * / __| | | | |_) | | 5 * | (__| |_| | _ <| |___ 6 * \___|\___/|_| \_\_____| 7 * 8 * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al. 9 * 10 * This software is licensed as described in the file COPYING, which 11 * you should have received as part of this distribution. The terms 12 * are also available at https://curl.se/docs/copyright.html. 13 * 14 * You may opt to use, copy, modify, merge, publish, distribute and/or sell 15 * copies of the Software, and permit persons to whom the Software is 16 * furnished to do so, under the terms of the COPYING file. 17 * 18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19 * KIND, either express or implied. 20 * 21 * SPDX-License-Identifier: curl 22 * 23 ***************************************************************************/ 24#include "test.h" 25 26#include "memdebug.h" 27 28int test(char *URL) 29{ 30 int res = 0; 31 CURLcode easyret; 32 CURLMcode multiret; 33 CURLSHcode shareret; 34 CURLUcode urlret; 35 (void)URL; 36 37 curl_easy_strerror((CURLcode)INT_MAX); 38 curl_multi_strerror((CURLMcode)INT_MAX); 39 curl_share_strerror((CURLSHcode)INT_MAX); 40 curl_url_strerror((CURLUcode)INT_MAX); 41 curl_easy_strerror((CURLcode)-INT_MAX); 42 curl_multi_strerror((CURLMcode)-INT_MAX); 43 curl_share_strerror((CURLSHcode)-INT_MAX); 44 curl_url_strerror((CURLUcode)-INT_MAX); 45 for(easyret = CURLE_OK; easyret <= CURL_LAST; easyret++) { 46 printf("e%d: %s\n", (int)easyret, curl_easy_strerror(easyret)); 47 } 48 for(multiret = CURLM_CALL_MULTI_PERFORM; multiret <= CURLM_LAST; 49 multiret++) { 50 printf("m%d: %s\n", (int)multiret, curl_multi_strerror(multiret)); 51 } 52 for(shareret = CURLSHE_OK; shareret <= CURLSHE_LAST; shareret++) { 53 printf("s%d: %s\n", (int)shareret, curl_share_strerror(shareret)); 54 } 55 for(urlret = CURLUE_OK; urlret <= CURLUE_LAST; urlret++) { 56 printf("u%d: %s\n", (int)urlret, curl_url_strerror(urlret)); 57 } 58 59 return (int)res; 60} 61