#include "setup.h"#include <ctype.h>#include <curl/curl.h>#include <stdio.h>#include <stdlib.h>#include <string.h>#include "memory.h"#include "urldata.h"#include "easyif.h"#include <curl/mprintf.h>#include "memdebug.h"Go to the source code of this file.
Defines | |
| #define | _MPRINTF_REPLACE |
Functions | |
| char * | curl_escape (const char *string, int inlength) |
| char * | curl_unescape (const char *string, int length) |
| char * | curl_easy_escape (CURL *handle, const char *string, int inlength) |
| char * | curl_easy_unescape (CURL *handle, const char *string, int length, int *olen) |
| void | curl_free (void *p) |
| char* curl_easy_escape | ( | CURL * | handle, | |
| const char * | string, | |||
| int | inlength | |||
| ) |
Definition at line 57 of file escape.c.
References Curl_convert_to_network(), CURLE_OK, free, malloc, NULL, and realloc.
Referenced by curl_escape().
| char* curl_easy_unescape | ( | CURL * | handle, | |
| const char * | string, | |||
| int | length, | |||
| int * | olen | |||
| ) |
Definition at line 119 of file escape.c.
References Curl_convert_from_network(), CURLE_OK, free, ISXDIGIT, malloc, and NULL.
Referenced by CreateConnection(), Curl_file_connect(), Curl_ftp_done(), curl_unescape(), ftp_parse_url_path(), tftp_send_first(), and unescape_word().
| char* curl_escape | ( | const char * | string, | |
| int | inlength | |||
| ) |
| char* curl_unescape | ( | const char * | string, | |
| int | length | |||
| ) |
1.5.6