summaryrefslogtreecommitdiff
path: root/utils/nsurl.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/nsurl.h')
-rw-r--r--utils/nsurl.h15
1 files changed, 15 insertions, 0 deletions
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