Skip to main content

apr_array_pop

Function apr_array_pop 

Source
pub unsafe extern "C" fn apr_array_pop(
    arr: *mut apr_array_header_t,
) -> *mut c_void
Expand description

Remove an element from an array (as a first-in, last-out stack). @param arr The array to remove an element from. @return Location of the element in the array. @remark If there are no elements in the array, NULL is returned.