aboutsummaryrefslogtreecommitdiffstats
path: root/src/statement.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-05-12 13:28:47 +0200
committerDavid Robillard <d@drobilla.net>2020-10-27 13:13:58 +0100
commit2be5c4870ebc6dc3f0562dcf53eda3c946981a1c (patch)
treeabc513fd38b6ca183c9fa02ec5148a89b4aa6f31 /src/statement.h
parent0e8a72aae08b64beb11d97f020c14126178d7545 (diff)
downloadserd-2be5c4870ebc6dc3f0562dcf53eda3c946981a1c.tar.gz
serd-2be5c4870ebc6dc3f0562dcf53eda3c946981a1c.tar.bz2
serd-2be5c4870ebc6dc3f0562dcf53eda3c946981a1c.zip
Add model
Diffstat (limited to 'src/statement.h')
-rw-r--r--src/statement.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/statement.h b/src/statement.h
index 1cb5345c..2c368219 100644
--- a/src/statement.h
+++ b/src/statement.h
@@ -19,6 +19,8 @@
#include "serd/serd.h"
+#include <stdbool.h>
+
/**
Quad of nodes (a statement), or a quad pattern.
@@ -31,4 +33,8 @@ struct SerdStatementImpl {
SerdCursor* cursor;
};
+bool
+serd_statement_matches_quad(const SerdStatement* statement,
+ const SerdQuad quad);
+
#endif // SERD_STATEMENT_H