Skip to main content

xmlBoolToText

Function xmlBoolToText 

Source
#[unsafe(no_mangle)]
pub const unsafe extern "C" fn xmlBoolToText( boolval: c_int, ) -> *const c_char
Expand description

Convert a boolean to text.

UPSTREAM-PARITY: xmlBoolToText()

§SAFETY

The function touches crate-global state only; it is safe as long as the caller respects the library’s global initialization/cleanup ordering (xmlInitParser before use, xmlCleanupParser only after all users are done).

Violating the global lifecycle ordering, or calling this after teardown or from a signal handler, is undefined behavior.