You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#pragma once |
|
#ifndef URL_ENCODE |
|
#define URL_ENCODE |
|
#include "define_inc.h" |
|
//return decode string length |
|
int url_decode(char *str, int len); |
|
|
|
//return new string, have to free |
|
char *url_encode(char const *s, int len, int *new_length); |
|
|
|
#endif |