non-ascii.h 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. #ifndef HEADER_CURL_NON_ASCII_H
  2. #define HEADER_CURL_NON_ASCII_H
  3. /***************************************************************************
  4. * _ _ ____ _
  5. * Project ___| | | | _ \| |
  6. * / __| | | | |_) | |
  7. * | (__| |_| | _ <| |___
  8. * \___|\___/|_| \_\_____|
  9. *
  10. * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
  11. *
  12. * This software is licensed as described in the file COPYING, which
  13. * you should have received as part of this distribution. The terms
  14. * are also available at https://curl.haxx.se/docs/copyright.html.
  15. *
  16. * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  17. * copies of the Software, and permit persons to whom the Software is
  18. * furnished to do so, under the terms of the COPYING file.
  19. *
  20. * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  21. * KIND, either express or implied.
  22. *
  23. ***************************************************************************/
  24. #include "curl_setup.h"
  25. #ifdef CURL_DOES_CONVERSIONS
  26. #include "urldata.h"
  27. /*
  28. * Curl_convert_clone() returns a malloced copy of the source string (if
  29. * returning CURLE_OK), with the data converted to network format.
  30. *
  31. * If no conversion was needed *outbuf may be NULL.
  32. */
  33. CURLcode Curl_convert_clone(struct Curl_easy *data,
  34. const char *indata,
  35. size_t insize,
  36. char **outbuf);
  37. void Curl_convert_init(struct Curl_easy *data);
  38. void Curl_convert_setup(struct Curl_easy *data);
  39. void Curl_convert_close(struct Curl_easy *data);
  40. CURLcode Curl_convert_to_network(struct Curl_easy *data,
  41. char *buffer, size_t length);
  42. CURLcode Curl_convert_from_network(struct Curl_easy *data,
  43. char *buffer, size_t length);
  44. CURLcode Curl_convert_from_utf8(struct Curl_easy *data,
  45. char *buffer, size_t length);
  46. #else
  47. #define Curl_convert_clone(a,b,c,d) ((void)a, CURLE_OK)
  48. #define Curl_convert_init(x) Curl_nop_stmt
  49. #define Curl_convert_setup(x) Curl_nop_stmt
  50. #define Curl_convert_close(x) Curl_nop_stmt
  51. #define Curl_convert_to_network(a,b,c) ((void)a, CURLE_OK)
  52. #define Curl_convert_from_network(a,b,c) ((void)a, CURLE_OK)
  53. #define Curl_convert_from_utf8(a,b,c) ((void)a, CURLE_OK)
  54. #endif
  55. #endif /* HEADER_CURL_NON_ASCII_H */