aboutsummaryrefslogtreecommitdiffstats
path: root/src/node.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-05-12 13:28:47 +0200
committerDavid Robillard <d@drobilla.net>2020-06-21 18:12:04 +0200
commite58e51850bc388ef666ebdf29d213878f5ec0629 (patch)
tree1faee34b2488d6d94634d602c9d56f083662db48 /src/node.h
parent23ac6850e10baa32ade25f8a090329672ce99318 (diff)
downloadserd-e58e51850bc388ef666ebdf29d213878f5ec0629.tar.gz
serd-e58e51850bc388ef666ebdf29d213878f5ec0629.tar.bz2
serd-e58e51850bc388ef666ebdf29d213878f5ec0629.zip
Add model
Diffstat (limited to 'src/node.h')
-rw-r--r--src/node.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/node.h b/src/node.h
index 3f8ec628..db5d25e2 100644
--- a/src/node.h
+++ b/src/node.h
@@ -19,6 +19,7 @@
#include "serd/serd.h"
+#include <stdbool.h>
#include <stddef.h>
struct SerdNodeImpl {
@@ -39,6 +40,18 @@ serd_node_buffer_c(const SerdNode* node)
return (const char*)(node + 1);
}
+static inline int
+serd_node_wildcard_compare(const SerdNode* a, const SerdNode* b)
+{
+ return (!a || !b) ? 0 : serd_node_compare(a, b);
+}
+
+static inline bool
+serd_node_pattern_match(const SerdNode* a, const SerdNode* b)
+{
+ return !a || !b || serd_node_equals(a, b);
+}
+
SerdNode*
serd_node_malloc(size_t n_bytes, SerdNodeFlags flags, SerdNodeType type);