diff options
| -rw-r--r-- | util/uri.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/util/uri.c b/util/uri.c index 350835b03f..573174bf47 100644 --- a/util/uri.c +++ b/util/uri.c @@ -164,19 +164,6 @@ static void uri_clean(URI *uri); ((*(p) == '=')) || ((*(p) == '\''))) /* - * gen-delims = ":" / "/" / "?" / "#" / "[" / "]" / "@" - */ -#define ISA_GEN_DELIM(p) \ - (((*(p) == ':')) || ((*(p) == '/')) || ((*(p) == '?')) || \ - ((*(p) == '#')) || ((*(p) == '[')) || ((*(p) == ']')) || \ - ((*(p) == '@'))) - -/* - * reserved = gen-delims / sub-delims - */ -#define ISA_RESERVED(p) (ISA_GEN_DELIM(p) || (ISA_SUB_DELIM(p))) - -/* * unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~" */ #define ISA_UNRESERVED(p) \ |