23#ifndef _UTILS_MISC_STRING_URLESCAPE_H_
24#define _UTILS_MISC_STRING_URLESCAPE_H_
35 return (c >=
'0' && c <= '9' ? c - '0' : c >=
'A' && c <=
'F' ? c -
'A' + 10 : c -
'a' + 10);
46 for (p = s; *s !=
'\0'; ++s) {
Fawkes library namespace.
void hex_unescape(char *s)
Remove URL hex escapes from s in place.
int unhex(char c)
Transform hex to value.