1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

* curl-shim.h, curl-shim.c (curl_escape, curl_free): Emulate

curl_escape and curl_free.
This commit is contained in:
David Shaw 2005-04-16 22:21:28 +00:00
parent 5748f595b0
commit d8e1f7656b
3 changed files with 66 additions and 0 deletions

View file

@ -68,5 +68,7 @@ CURL *curl_easy_init(void);
CURLcode curl_easy_setopt(CURL *curl,CURLoption option,...);
CURLcode curl_easy_perform(CURL *curl);
void curl_easy_cleanup(CURL *curl);
char *curl_escape(char *str,int len);
void curl_free(char *ptr);
#endif /* !_CURL_SHIM_H_ */