[][src]Function eosio_cdt_sys::printhex

pub unsafe extern "C" fn printhex(data: *const c_void, datalen: u32)

Prints hexidecimal data of length datalen

@brief Prints hexidecimal data of length datalen @param data to be printed @param datalen length of the data to be printed

Example @code unsigned char rawData[9] = {0x49 0x20 0x6C 0x6F 0x76 0x65 0x20 0x62 0x6D}; printhex(&rawData, 9); @endcode