#[unsafe(no_mangle)]pub unsafe extern "C" fn nros_rmw_cffi_registered_names(
buf: *mut *const c_char,
cap: usize,
) -> usizeExpand description
Diagnostic helper — fills buf with pointers to up to cap
registered backend names. Returns the number of names available
(may exceed cap). Pointer-valid for the program’s lifetime.
§Safety
bufmust either be NULL (whencap == 0) or point at writable memory of at leastcap * sizeof(*const c_char)bytes.