Skip to main content

apr_snprintf

Function apr_snprintf 

Source
pub unsafe extern "C" fn apr_snprintf(
    buf: *mut c_char,
    len: apr_size_t,
    format: *const c_char,
    ...
) -> c_int
Expand description

snprintf routine based on apr_vformatter. This means it understands the same extensions. @param buf The buffer to write to @param len The size of the buffer @param format The format string @param … The arguments to use to fill out the format string.