Function eosio_sys::printqf

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

Prints value as quadruple-precision floating point number @brief Prints value as quadruple-precision floating point number (i.e. long double) @param value is a pointer to the long double to be printed

Example:

@code long double value = 5.0 / 10.0; printqf(value); // Output: 0.5 @endcode