non-ascii.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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 - 2011, 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 http://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 SessionHandle *data,
  34. const char *indata,
  35. size_t insize,
  36. char **outbuf);
  37. void Curl_convert_init(struct SessionHandle *data);
  38. void Curl_convert_setup(struct SessionHandle *data);
  39. void Curl_convert_close(struct SessionHandle *data);
  40. CURLcode Curl_convert_to_network(struct SessionHandle *data,
  41. char *buffer, size_t length);
  42. CURLcode Curl_convert_from_network(struct SessionHandle *data,
  43. char *buffer, size_t length);
  44. CURLcode Curl_convert_from_utf8(struct SessionHandle *data,
  45. char *buffer, size_t length);
  46. CURLcode Curl_convert_form(struct SessionHandle *data, struct FormData *form);
  47. #else
  48. #define Curl_convert_clone(a,b,c,d) ((void)a, CURLE_OK)
  49. #define Curl_convert_init(x) Curl_nop_stmt
  50. #define Curl_convert_setup(x) Curl_nop_stmt
  51. #define Curl_convert_close(x) Curl_nop_stmt
  52. #define Curl_convert_to_network(a,b,c) ((void)a, CURLE_OK)
  53. #define Curl_convert_from_network(a,b,c) ((void)a, CURLE_OK)
  54. #define Curl_convert_from_utf8(a,b,c) ((void)a, CURLE_OK)
  55. #define Curl_convert_form(a,b) CURLE_OK
  56. #endif
  57. #endif /* HEADER_CURL_NON_ASCII_H */