diff options
Diffstat (limited to 'ACE/apps/JAWS2/HTTP_10.cpp')
-rw-r--r-- | ACE/apps/JAWS2/HTTP_10.cpp | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/ACE/apps/JAWS2/HTTP_10.cpp b/ACE/apps/JAWS2/HTTP_10.cpp deleted file mode 100644 index 60ebdc8b17f..00000000000 --- a/ACE/apps/JAWS2/HTTP_10.cpp +++ /dev/null @@ -1,32 +0,0 @@ -// $Id$ - -#include "HTTP_10.h" - -#include "JAWS/JAWS.h" - -ACE_RCSID(PROTOTYPE, HTTP_10, "$Id$") - -char * -JAWS_HTTP_10_Helper::HTTP_decode_string (char *path) -{ - // replace the percentcodes with the actual character - int i, j; - char percentcode[3]; - - for (i = j = 0; path[i] != '\0'; i++, j++) - { - if (path[i] == '%') - { - percentcode[0] = path[++i]; - percentcode[1] = path[++i]; - percentcode[2] = '\0'; - path[j] = (char) ACE_OS::strtol (percentcode, (char **) 0, 16); - } - else - path[j] = path[i]; - } - - path[j] = path[i]; - - return path; -} |