pub unsafe extern "C" fn uriComposeQueryMallocExMmA(
dest: *mut *mut c_char,
queryList: *const UriQueryListA,
spaceToPlus: UriBool,
normalizeBreaks: UriBool,
memory: *mut UriMemoryManager,
) -> c_intExpand 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 ‘?’.
@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. @param memory IN: Memory manager to use, NULL for default libc @return Error code or 0 on success
@see uriComposeQueryMallocA @see uriComposeQueryMallocExA @see uriComposeQueryExA @see uriDissectQueryMallocA @see uriDissectQueryMallocExA @see uriDissectQueryMallocExMmA @since 0.9.0