Function list_empty
Source pub fn list_empty(l: *mut List) -> c_int
Expand description
Check if the list is empty.
§UPSTREAM-PARITY
int xmlListEmpty(xmlListPtr l);
Returns 1 if empty, 0 if not empty.
§Safety
l must be NULL or a valid, initialized List that stays alive for
the call; the list is only read.