pub unsafe extern "C" fn uriComposeQueryExA(
dest: *mut c_char,
queryList: *const UriQueryListA,
maxChars: c_int,
charsWritten: *mut c_int,
spaceToPlus: UriBool,
normalizeBreaks: UriBool,
) -> c_intExpand description
Converts a query list structure back to a query string. The composed string does not start with ‘?’.
@param dest OUT: Output destination @param queryList IN: Query list to convert @param maxChars IN: Maximum number of characters to copy including terminator @param charsWritten OUT: Number of characters written, can be lower than maxChars even if the query list is too long! @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 uriComposeQueryA @see uriComposeQueryMallocA @see uriComposeQueryMallocExA @see uriComposeQueryMallocExMmA @see uriComposeQueryCharsRequiredExA @see uriDissectQueryMallocA @see uriDissectQueryMallocExA @see uriDissectQueryMallocExMmA @since 0.7.0