* xmlNormalizeURIPath: * @path: pointer to the path string * * Applies the 5 normalization steps to a path string--that is, RFC 2396 * Section 5.2, steps 6.c through 6.g. * * Normalization occurs directly on the string, no new allocation is done * * Returns 0 or an error code */
| 1588 | * Returns 0 or an error code |
| 1589 | */ |
| 1590 | int |
| 1591 | xmlNormalizeURIPath(char *path) { |
| 1592 | return(xmlNormalizePath(path, 0)); |
| 1593 | } |
| 1594 | |
| 1595 | static int is_hex(char c) { |
| 1596 | if (((c >= '0') && (c <= '9')) || |