aboutsummaryrefslogtreecommitdiffstats
path: root/src/uri.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-05-11 11:14:32 +0200
committerDavid Robillard <d@drobilla.net>2019-12-19 20:52:35 -0500
commit2370d86f35ff41ae94c5c45deef1e6a6dac0052c (patch)
tree0994e8ba1c75fcc7785c9d92de61fc75b49fdef7 /src/uri.c
parentf72ab5fe4e39d4973e31e43b6db3be499af418f2 (diff)
downloadserd-2370d86f35ff41ae94c5c45deef1e6a6dac0052c.tar.gz
serd-2370d86f35ff41ae94c5c45deef1e6a6dac0052c.tar.bz2
serd-2370d86f35ff41ae94c5c45deef1e6a6dac0052c.zip
Clean up includes and improve source file separation
Diffstat (limited to 'src/uri.c')
-rw-r--r--src/uri.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/uri.c b/src/uri.c
index e8631ea8..b4f5beb2 100644
--- a/src/uri.c
+++ b/src/uri.c
@@ -14,13 +14,16 @@
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#include "serd_internal.h"
+#include "string_utils.h"
+#include "uri_utils.h"
+
+#include "serd/serd.h"
+#include <stdbool.h>
+#include <stdint.h>
#include <stdlib.h>
#include <string.h>
-#include "uri_utils.h"
-
char*
serd_file_uri_parse(const char* uri, char** hostname)
{