Parse URL encoded string
char str[256] = "hello%20%27qDecoder%27%20world"; printf("Before : %s\n", str); qDecodeUrl(str); printf("After : %s\n", str);
Definition at line 144 of file qEncode.c.