Function list_push_back
Source pub unsafe fn list_push_back(l: *mut List, data: *mut c_void) -> c_int
Expand description
Push data to the back of the list.
§UPSTREAM-PARITY
int xmlListPushBack(xmlListPtr l, void *data);
Returns 0 on success, -1 on failure.
§SAFETY
l must be a valid pointer to a List, or NULL.