From: Michael Orlitzky Date: Wed, 11 Oct 2023 12:44:54 +0000 (-0400) Subject: src/svgtiny_internal.h: drop svgtiny_resolve_url() prototype X-Git-Url: http://gitweb.michael.orlitzky.com/?a=commitdiff_plain;ds=sidebyside;h=f9559e3c56efaebddb28a0159e306e9cbb010abf;p=libsvgtiny.git src/svgtiny_internal.h: drop svgtiny_resolve_url() prototype This is no longer needed now that svgtiny_resolve_url() lives in the same file as its sole consumer, svgtiny_create_stylesheet(). --- diff --git a/src/svgtiny_internal.h b/src/svgtiny_internal.h index 6a04c72..6b7bd92 100644 --- a/src/svgtiny_internal.h +++ b/src/svgtiny_internal.h @@ -92,8 +92,6 @@ char *svgtiny_strndup(const char *s, size_t n); #endif /* svgtiny_css.c */ -css_error svgtiny_resolve_url(void *pw, - const char *base, lwc_string *rel, lwc_string **abs); css_error svgtiny_create_stylesheet(css_stylesheet **sheet, bool inline_style);