[][src]Function eosio_cdt_sys::printi128

pub unsafe extern "C" fn printi128(value: *const int128_t)

Prints value as a 128 bit signed integer

@param value is a pointer to the 128 bit signed integer to be printed

Example:

@code int128_t large_int(-87654323456); printi128(&large_int); // Output: -87654323456 @endcode