Skip to main content

hash_lookup3

Function hash_lookup3 

Source
pub unsafe fn hash_lookup3(
    table: *mut HashTable,
    name: *const xmlChar,
    name2: *const xmlChar,
    name3: *const xmlChar,
) -> *mut c_void
Expand description

Look up an entry by three keys.

§UPSTREAM-PARITY

void *xmlHashLookup3(xmlHashTablePtr table, const xmlChar *name,
                     const xmlChar *name2, const xmlChar *name3);

Returns the payload, or NULL if not found.

§SAFETY

  • table must be a valid pointer to a HashTable, or NULL.
  • name, name2, name3 must be valid null-terminated strings or NULL.