Lines Matching refs:str
54 url_decode(char *str) in url_decode() argument
56 if (!str) { in url_decode()
60 while (*str) { in url_decode()
61 if (*str == '%') { in url_decode()
63 char *esc = str++; /* remember the start of the escape sequence */ in url_decode()
65 if (*str) { in url_decode()
66 c += hex2int(*str++); in url_decode()
68 if (*str) { in url_decode()
69 c = (char)((c << 4) + hex2int(*str++)); in url_decode()
76 str = memmove(esc, str, strlen(str) + 1); in url_decode()
79 str++; in url_decode()