Function eosio_sys::printui128

source ·
pub unsafe extern "C" fn printui128(value: *const uint128_t)
Expand description

Prints value as a 128 bit unsigned integer @brief Prints value as a 128 bit unsigned integer @param value is a pointer to the 128 bit unsigned integer to be printed

Example:

@code uint128_t large_int(87654323456); printui128(&large_int); // Output: 87654323456 @endcode