Function eosio_sys::prints_l

source ·
pub unsafe extern "C" fn prints_l(cstr: *const c_char, len: u32)
Expand description

Prints string up to given length @brief Prints string @param cstr - pointer to string @param len - len of string to be printed

Example:

@code prints_l(“Hello World!”, 5); // Output: Hello @endcode