aboutsummaryrefslogtreecommitdiffstats
path: root/src/env.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-05-01 14:34:42 +0200
committerDavid Robillard <d@drobilla.net>2018-05-27 18:21:57 +0200
commitb5eeb621520d9c0c2647bfa1bfb53045a75a8b6e (patch)
tree7fdd27ad8b0e9552be7314039c544ed0ffdef735 /src/env.c
parentaa41376304f135bfc54d2b5c16fa8ecd7302ad24 (diff)
downloadserd-b5eeb621520d9c0c2647bfa1bfb53045a75a8b6e.tar.gz
serd-b5eeb621520d9c0c2647bfa1bfb53045a75a8b6e.tar.bz2
serd-b5eeb621520d9c0c2647bfa1bfb53045a75a8b6e.zip
Remove syntax assumptions from SerdEnv implementation
Diffstat (limited to 'src/env.c')
-rw-r--r--src/env.c26
1 files changed, 1 insertions, 25 deletions
diff --git a/src/env.c b/src/env.c
index fb1fd31d..81a8362b 100644
--- a/src/env.c
+++ b/src/env.c
@@ -20,7 +20,6 @@
#include <string.h>
#include "node.h"
-#include "string_utils.h"
typedef struct {
SerdNode* name;
@@ -168,27 +167,6 @@ serd_env_set_prefix_from_strings(SerdEnv* env,
return st;
}
-static inline bool
-is_nameChar(const char c)
-{
- return is_alpha(c) || is_digit(c) || c == '_';
-}
-
-/**
- Return true iff `buf` is a valid prefixed name suffix.
- TODO: This is more strict than it should be.
-*/
-static inline bool
-is_name(const char* buf, size_t len)
-{
- for (size_t i = 0; i < len; ++i) {
- if (!is_nameChar(buf[i])) {
- return false;
- }
- }
- return true;
-}
-
SERD_API
bool
serd_env_qualify(const SerdEnv* env,
@@ -206,9 +184,7 @@ serd_env_qualify(const SerdEnv* env,
*prefix = env->prefixes[i].name;
suffix->buf = uri_str + prefix_uri->n_bytes;
suffix->len = uri->n_bytes - prefix_uri->n_bytes;
- if (is_name(suffix->buf, suffix->len)) {
- return true;
- }
+ return true;
}
}
}