From 970d6dd835d4db60d6264bf3ff1a7553cb683723 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Wed, 28 Sep 2011 11:26:10 +0000 Subject: Add function to get a nsurl with fragment removed from a nsurl. svn path=/trunk/netsurf/; revision=12903 --- utils/nsurl.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'utils/nsurl.h') diff --git a/utils/nsurl.h b/utils/nsurl.h index 6b44b7ffa..ceb29bc97 100644 --- a/utils/nsurl.h +++ b/utils/nsurl.h @@ -197,4 +197,19 @@ const char *nsurl_access(const nsurl *url); */ nserror nsurl_join(const nsurl *base, const char *rel, nsurl **joined); + +/** + * Create a NetSurf URL object without a fragment from a NetSurf URL + * + * \param base NetSurf URL to create new NetSurf URL from + * \param no_frag Returns new NetSurf URL without fragment + * \return NSERROR_OK on success, appropriate error otherwise + * + * If return value != NSERROR_OK, nothing will be returned in no_frag. + * + * It is up to the client to call nsurl_destroy when they are finished with + * the created object. + */ +nserror nsurl_defragment(const nsurl *url, nsurl **no_frag); + #endif -- cgit v1.2.1