diff options
Diffstat (limited to 'src/node.h')
-rw-r--r-- | src/node.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -6,6 +6,8 @@ #include "serd/attributes.h" #include "serd/node.h" +#include "serd/string_view.h" +#include "serd/uri.h" #include <stddef.h> @@ -34,4 +36,8 @@ void serd_node_set(SerdNode* SERD_NONNULL* SERD_NONNULL dst, const SerdNode* SERD_NONNULL src); +/// Create a new URI from a string, resolved against a base URI +SerdNode* SERD_ALLOCATED +serd_new_resolved_uri(SerdStringView string, SerdURIView base_uri); + #endif // SERD_SRC_NODE_H |