va_end

Function va_end 

Source
pub unsafe fn va_end(ap: &mut VaList<'_>)
🔬This is a nightly-only experimental API. (core_intrinsics)
Available on non-crate feature ferrocene_subset only.
Expand description

Destroy the arglist ap after initialization with va_start or va_copy.

§Safety

ap must not be used to access variable arguments after this call.