| 383 | } |
| 384 | |
| 385 | char x2c(char *what) { |
| 386 | register char digit; |
| 387 | |
| 388 | digit = (what[0] >= 'A' ? ((what[0] & 0xdf) - 'A')+10 : (what[0] - '0')); |
| 389 | digit *= 16; |
| 390 | digit += (what[1] >= 'A' ? ((what[1] & 0xdf) - 'A')+10 : (what[1] - '0')); |
| 391 | return(digit); |
| 392 | } |
| 393 | |
| 394 | void unescape_url(char *url) { |
| 395 | register int x,y; |