uriComposeQueryMallocExA

Function uriComposeQueryMallocExA 

Source
pub unsafe extern "C" fn uriComposeQueryMallocExA(
    dest: *mut *mut c_char,
    queryList: *const UriQueryListA,
    spaceToPlus: UriBool,
    normalizeBreaks: UriBool,
) -> c_int
Expand description

Converts a query list structure back to a query string. Memory for this string is allocated internally. The composed string does not start with ‘?’. Uses default libc-based memory manager.

@param dest OUT: Output destination @param queryList IN: Query list to convert @param spaceToPlus IN: Whether to convert ’ ’ to ‘+’ or not @param normalizeBreaks IN: Whether to convert CR and LF to CR-LF or not. @return Error code or 0 on success

@see uriComposeQueryMallocA @see uriComposeQueryMallocExMmA @see uriComposeQueryExA @see uriDissectQueryMallocA @see uriDissectQueryMallocExA @see uriDissectQueryMallocExMmA @since 0.7.0