From 05a25de591ed61bb4c60c9c93d56fb6ad78a2141 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 10 Feb 2011 22:40:09 +0000 Subject: Add serd_node_new_uri_from_string. git-svn-id: http://svn.drobilla.net/serd/trunk@98 490d8e77-9747-427b-9fa3-0b8f29cee8a0 --- serd/serd.h | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'serd') diff --git a/serd/serd.h b/serd/serd.h index 7a7d0bb3..98064bac 100644 --- a/serd/serd.h +++ b/serd/serd.h @@ -190,19 +190,20 @@ SERD_API SerdNode serd_node_copy(const SerdNode* node); -/** Create a new node by resolving @a uri_node into a new node and parsed URI. - * This is a basic wrapper of serd_node_new_uri which first parses @a uri_node. - * @param uri_node The URI node to parse, resolve, and serialise. - * @param base Base URI to resolve @a uri_node against (or NULL). - * @param out (Output) set to the parsing of the new URI (i.e. points only to - * memory owned by the new returned node). - */ +/** Simple wrapper for serd_node_new_uri to resolve a URI node. */ SERD_API SerdNode serd_node_new_uri_from_node(const SerdNode* uri_node, const SerdURI* base, SerdURI* out); +/** Simple wrapper for serd_node_new_uri to resolve a URI string. */ +SERD_API +SerdNode +serd_node_new_uri_from_string(const uint8_t* str, + const SerdURI* base, + SerdURI* out); + /** Create a new node by serialising @a uri into a new string. * @param uri The URI to parse and serialise. * @param base Base URI to resolve @a uri against (or NULL for no resolution). -- cgit v1.2.1