#[unsafe(no_mangle)]pub unsafe extern "C" fn xmlTextWriterStartAttribute(
writer: *mut XmlTextWriter,
name: *const xmlChar,
) -> c_intExpand description
Write a formatted attribute.
§UPSTREAM-PARITY
int xmlTextWriterWriteFormatAttribute(xmlTextWriterPtr writer,
const xmlChar *name,
...);§SAFETY
writermust be a valid pointer to anXmlTextWriteror NULL.namemust be a valid null-terminated string. Start an attribute (to be written incrementally).
§UPSTREAM-PARITY
int xmlTextWriterStartAttribute(xmlTextWriterPtr writer, const xmlChar *name);§SAFETY
writermust be a valid pointer to anXmlTextWriteror NULL.namemust be a valid null-terminated string or NULL.