diff options
Diffstat (limited to 'serd')
-rw-r--r-- | serd/serd.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/serd/serd.h b/serd/serd.h index ba285255..0909dcc7 100644 --- a/serd/serd.h +++ b/serd/serd.h @@ -606,6 +606,34 @@ SerdNode serd_node_new_blob(const void* buf, size_t size, bool wrap_lines); /** + Return the type of a node (SERD_URI, SERD_BLANK, or SERD_LITERAL). +*/ +SERD_API +SerdType +serd_node_get_type(const SerdNode* node); + +/** + Return the string value of a node. +*/ +SERD_API +const char* +serd_node_get_string(const SerdNode* node); + +/** + Return the length of the string value of a node in bytes. +*/ +SERD_API +size_t +serd_node_get_length(const SerdNode* node); + +/** + Return the flags (string properties) of a node. +*/ +SERD_API +SerdNodeFlags +serd_node_get_flags(const SerdNode* node); + +/** Free any data owned by `node`. Note that if `node` is itself dynamically allocated (which is not the case |