#include "curl_setup.h"
#include <curl/curl.h>
#include "urldata.h"
#include "warnless.h"
#include "non-ascii.h"
#include "escape.h"
#include "strdup.h"
#include "curl_printf.h"
#include "curl_memory.h"
#include "memdebug.h"
Go to the source code of this file.
|
| char * | curl_easy_escape (struct Curl_easy *data, const char *string, int inlength) |
| |
| char * | curl_easy_unescape (struct Curl_easy *data, const char *string, int length, int *olen) |
| |
| char * | curl_escape (const char *string, int inlength) |
| |
| void | curl_free (void *p) |
| |
| static bool | Curl_isunreserved (unsigned char in) |
| |
| char * | curl_unescape (const char *string, int length) |
| |
| CURLcode | Curl_urldecode (struct Curl_easy *data, const char *string, size_t length, char **ostring, size_t *olen, bool reject_ctrl) |
| |
◆ curl_easy_escape()
| char* curl_easy_escape |
( |
struct Curl_easy * |
data, |
|
|
const char * |
string, |
|
|
int |
inlength |
|
) |
| |
◆ curl_easy_unescape()
| char* curl_easy_unescape |
( |
struct Curl_easy * |
data, |
|
|
const char * |
string, |
|
|
int |
length, |
|
|
int * |
olen |
|
) |
| |
◆ curl_escape()
| char* curl_escape |
( |
const char * |
string, |
|
|
int |
inlength |
|
) |
| |
◆ curl_free()
| void curl_free |
( |
void * |
p | ) |
|
◆ Curl_isunreserved()
| static bool Curl_isunreserved |
( |
unsigned char |
in | ) |
|
|
static |
◆ curl_unescape()
| char* curl_unescape |
( |
const char * |
string, |
|
|
int |
length |
|
) |
| |
◆ Curl_urldecode()