lib1538.c 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. #include "memdebug.h"
  26. int test(char *URL)
  27. {
  28. int res = 0;
  29. CURLcode easyret;
  30. CURLMcode multiret;
  31. CURLSHcode shareret;
  32. CURLUcode urlret;
  33. (void)URL;
  34. curl_easy_strerror((CURLcode)INT_MAX);
  35. curl_multi_strerror((CURLMcode)INT_MAX);
  36. curl_share_strerror((CURLSHcode)INT_MAX);
  37. curl_url_strerror((CURLUcode)INT_MAX);
  38. curl_easy_strerror((CURLcode)-INT_MAX);
  39. curl_multi_strerror((CURLMcode)-INT_MAX);
  40. curl_share_strerror((CURLSHcode)-INT_MAX);
  41. curl_url_strerror((CURLUcode)-INT_MAX);
  42. for(easyret = CURLE_OK; easyret <= CURL_LAST; easyret++) {
  43. printf("e%d: %s\n", (int)easyret, curl_easy_strerror(easyret));
  44. }
  45. for(multiret = CURLM_CALL_MULTI_PERFORM; multiret <= CURLM_LAST;
  46. multiret++) {
  47. printf("m%d: %s\n", (int)multiret, curl_multi_strerror(multiret));
  48. }
  49. for(shareret = CURLSHE_OK; shareret <= CURLSHE_LAST; shareret++) {
  50. printf("s%d: %s\n", (int)shareret, curl_share_strerror(shareret));
  51. }
  52. for(urlret = CURLUE_OK; urlret <= CURLUE_LAST; urlret++) {
  53. printf("u%d: %s\n", (int)urlret, curl_url_strerror(urlret));
  54. }
  55. return (int)res;
  56. }