Function tari_wallet_ffi::completed_transactions_get_length[][src]

#[no_mangle]pub unsafe extern "C" fn completed_transactions_get_length(
    transactions: *mut TariCompletedTransactions,
    error_out: *mut c_int
) -> c_uint

-------------------------------------------------------------------------------------------- /// ----------------------------------- CompletedTransactions ----------------------------------- /// Gets the length of a TariCompletedTransactions

Arguments

transactions - The pointer to a TariCompletedTransactions error_out - Pointer to an int which will be modified to an error code should one occur, may not be null. Functions as an out parameter.

Returns

c_uint - Returns the number of elements in a TariCompletedTransactions, note that it will be zero if transactions is null

Safety

None