char* qDecodeUrl ( char *  str  ) 

Parse URL encoded string

Parameters:
str a pointer of URL encoded string
Returns:
a string pointer of str in case of successful, otherwise returns NULL
Note:
This modify str directly
 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.


Generated on Mon Mar 26 07:00:51 2018 for JSOC_Documentation by  doxygen 1.5.7.1