diff options
author | Daniel Stenberg <daniel@haxx.se> | 2006-04-07 21:50:47 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2006-04-07 21:50:47 +0000 |
commit | 5a4b43848ac21b3d831f00ce11136e20f820f0a0 (patch) | |
tree | 981b8520e1f9aa683da489c8a283fb513dd26f16 /lib/easyif.h | |
parent | d98869a0889195a9e0d353cf691219f78186ac93 (diff) | |
download | curl-5a4b43848ac21b3d831f00ce11136e20f820f0a0.tar.gz |
First commit of David McCreedy's EBCDIC and TPF changes.
Diffstat (limited to 'lib/easyif.h')
-rw-r--r-- | lib/easyif.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/easyif.h b/lib/easyif.h index 0f4f5703e..5c1646ad8 100644 --- a/lib/easyif.h +++ b/lib/easyif.h @@ -28,4 +28,11 @@ */ void Curl_easy_addmulti(struct SessionHandle *data, void *multi); +CURLcode Curl_convert_to_network(struct SessionHandle *data, + char *buffer, size_t length); +CURLcode Curl_convert_from_network(struct SessionHandle *data, + char *buffer, size_t length); +CURLcode Curl_convert_from_utf8(struct SessionHandle *data, + char *buffer, size_t length); + #endif /* __EASYIF_H */ |