Registry / networking / uriparser

uriparser

JSON →
library1.0.0vcpkgunverified

Strictly RFC 3986 compliant URI parsing and handling library written in C89.

vcpkg install uriparser
INSTALL
IMPORT
SIG · URIPARSER
U
uriparser
networkingcppv1.0.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

uriparser/Uri.h
#include <uriparser/Uri.h>

Parse a URI and print its scheme

#include <uriparser/Uri.h> #include <stdio.h> int main() { UriUriA uri; const char* input = "https://example.com/path?query=1"; if (uriParseSingleUriA(&uri, input, NULL) == URI_SUCCESS) { printf("Scheme: %.*s\n", (int)(uri.scheme.afterLast - uri.scheme.first), uri.scheme.first); uriFreeUriMembersA(&uri); } return 0; }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
1.0.0latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
15 hits · last 30 days
node
12
Amazon
1
OpenAI (training)
1
Resources

No resource links recorded.

uriparser — pip install uriparser · libregistry