diff options
author | David Robillard <d@drobilla.net> | 2018-02-04 12:40:45 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-01-13 15:33:54 -0500 |
commit | a650d2ad2d4785c40405854740e70f487ae1016a (patch) | |
tree | 7c7b12d1dcaae256639126a5e08ed390d2b490a3 /include | |
parent | 1483449efe47dccdfdf3f5415c2aa616f73c9cef (diff) | |
download | serd-a650d2ad2d4785c40405854740e70f487ae1016a.tar.gz serd-a650d2ad2d4785c40405854740e70f487ae1016a.tar.bz2 serd-a650d2ad2d4785c40405854740e70f487ae1016a.zip |
Add node accessor API
Diffstat (limited to 'include')
-rw-r--r-- | include/serd/serd.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/include/serd/serd.h b/include/serd/serd.h index 3c058b91..b14cf24d 100644 --- a/include/serd/serd.h +++ b/include/serd/serd.h @@ -577,6 +577,26 @@ SERD_API SerdNode serd_node_copy(const SerdNode* SERD_NULLABLE node); +/// Return the type of a node (SERD_URI, SERD_BLANK, or SERD_LITERAL) +SERD_PURE_API +SerdNodeType +serd_node_type(const SerdNode* SERD_NONNULL node); + +/// Return the node's string +SERD_PURE_API +const char* SERD_NONNULL +serd_node_string(const SerdNode* SERD_NONNULL node); + +/// Return the length of the node's string in bytes (excluding terminator) +SERD_PURE_API +size_t +serd_node_length(const SerdNode* SERD_NONNULL node); + +/// Return the flags (string properties) of a node +SERD_PURE_API +SerdNodeFlags +serd_node_flags(const SerdNode* SERD_NONNULL node); + /// Return true iff `a` is equal to `b` SERD_PURE_API bool |