curl_url_strerror.3 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. .\" **************************************************************************
  2. .\" * _ _ ____ _
  3. .\" * Project ___| | | | _ \| |
  4. .\" * / __| | | | |_) | |
  5. .\" * | (__| |_| | _ <| |___
  6. .\" * \___|\___/|_| \_\_____|
  7. .\" *
  8. .\" * Copyright (C) 1998 - 2021, 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. .\" **************************************************************************
  22. .TH curl_url_strerror 3 "21 Aug 2021" "libcurl 7.80.0" "libcurl Manual"
  23. .SH NAME
  24. curl_url_strerror - return string describing error code
  25. .SH SYNOPSIS
  26. .nf
  27. .B #include <curl/curl.h>
  28. .BI "const char *curl_url_strerror(CURLUcode " errornum ");"
  29. .SH DESCRIPTION
  30. The curl_url_strerror() function returns a string describing the CURLUcode
  31. error code passed in the argument \fIerrornum\fP.
  32. .SH EXAMPLE
  33. .nf
  34. CURLUcode rc;
  35. CURLU *url = curl_url();
  36. rc = curl_url_set(url, CURLUPART_URL, "https://example.com", 0);
  37. if(rc)
  38. printf("URL error: %s\\n", curl_url_strerror(rc));
  39. curl_url_cleanup(url);
  40. .fi
  41. .SH AVAILABILITY
  42. Added in 7.80.0
  43. .SH RETURN VALUE
  44. A pointer to a null-terminated string.
  45. .SH "SEE ALSO"
  46. .BR libcurl-errors "(3), " curl_url_get "(3), " curl_url_set "(3), "
  47. .BR curl_easy_strerror "(3), " curl_multi_strerror "(3), "
  48. .BR curl_share_strerror "(3)"