Function ql_sys_log_puts
#[unsafe(no_mangle)]pub unsafe extern "C" fn ql_sys_log_puts(
_log_id: c_int,
prio: c_int,
tag: *const c_char,
text: *const c_char,
) -> c_intAvailable on crate feature
logging only.Expand description
Sends a simple string to the log.
Originally provided by ql_sys_log.
ยงSafety
This function is safe to call if both tag and text point to a valid
null-terminated C string.