pub unsafe fn add_notation_decl(
dtd: *mut _xmlDtd,
name: *const xmlChar,
PublicID: *const xmlChar,
SystemID: *const xmlChar,
) -> *mut _xmlNotationExpand description
Add a notation declaration to a DTD.
§UPSTREAM-PARITY
xmlNotationPtr xmlAddNotationDecl(xmlDtdPtr dtd, const xmlChar *name,
const xmlChar *PublicID,
const xmlChar *SystemID);§SAFETY
dtdmust be a valid pointer to an _xmlDtd, or NULL.namemust be a valid null-terminated string.PublicID,SystemIDmay be NULL.