Registry / utility / apr-util

apr-util

JSON →
library1.6.3vcpkgunverified

Apache Portable Runtime Utility library provides additional utility functions for APR, including XML parsing, database access, and URI handling.

vcpkg install apr-util
INSTALL
IMPORT
SIG · APR-UTIL
A
apr-util
utilitycppv1.6.3
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.

apr_uri.h
#include <apr_uri.h>

Minimal example parsing a URI using APR-util.

#include <apr_uri.h> #include <apr_pools.h> #include <stdio.h> int main() { apr_pool_t *pool; apr_pool_initialize(); apr_pool_create(&pool, NULL); apr_uri_t uri; apr_uri_parse(pool, "https://example.com/path", &uri); printf("Host: %s\n", uri.hostname); apr_pool_destroy(pool); apr_pool_terminate(); return 0; }
Debug
Known issues
gotchaRequires APR base library and proper pool management; memory leaks if pools not destroyed.
fix
Always create and destroy APR pools correctly.
affects: *
Upgrade
Version history
1.6.3latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
23 hits · last 30 days
node
20
OpenAI (training)
2
Meta
1
Resources

No resource links recorded.

apr-util — pip install apr-util · libregistry