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