[][src]Function eosio_cdt_sys::printqf

pub unsafe extern "C" fn printqf(value: *const f64)

Prints value as quadruple-precision floating point number

@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