ada_parse

Parses a URL string and returns a handle to the parsed URL. The input must be a null-terminated C string (ASCII or UTF-8).

extern (C) @nogc nothrow @safe @trusted
ada_parse
(
scope const(char)* input
,
size_t length
)

Parameters

input const(char)*

The URL string to parse.

length size_t

The length of the input string.

Return Value

Type: ada_url

An ada_url handle, which must be freed with ada_free.

Meta