8 JAWS_HTTP_10_Helper::HTTP_decode_string (char *path
)
10 // replace the percentcodes with the actual character
14 for (i
= j
= 0; path
[i
] != '\0'; i
++, j
++)
18 percentcode
[0] = path
[++i
];
19 percentcode
[1] = path
[++i
];
20 percentcode
[2] = '\0';
21 path
[j
] = (char) ACE_OS::strtol (percentcode
, (char **) 0, 16);