apple-accelerate 0.3.2

Safe Rust bindings for Apple's Accelerate framework on macOS with exhaustive optional raw C FFI
Documentation
#![allow(missing_docs, non_camel_case_types, non_upper_case_globals)]

/// Raw FFI type alias for `__CLPK_integer`.
pub type __CLPK_integer = i32;

#[link(name = "Accelerate", kind = "framework")]
unsafe extern "C" {
    /// Raw FFI declaration for `sgetrf_`.
    pub fn sgetrf_(
        m: *mut __CLPK_integer,
        n: *mut __CLPK_integer,
        a: *mut f32,
        lda: *mut __CLPK_integer,
        ipiv: *mut __CLPK_integer,
        info: *mut __CLPK_integer,
    );
    /// Raw FFI declaration for `sgesv_`.
    pub fn sgesv_(
        n: *mut __CLPK_integer,
        nrhs: *mut __CLPK_integer,
        a: *mut f32,
        lda: *mut __CLPK_integer,
        ipiv: *mut __CLPK_integer,
        b: *mut f32,
        ldb: *mut __CLPK_integer,
        info: *mut __CLPK_integer,
    );
}

#[allow(
    missing_docs,
    non_camel_case_types,
    non_snake_case,
    non_upper_case_globals,
    unused_imports,
    dead_code,
    improper_ctypes,
    improper_ctypes_definitions,
    unnecessary_transmutes
)]
#[allow(clippy::all, clippy::pedantic, clippy::nursery, clippy::style, clippy::complexity, clippy::correctness, clippy::perf)]
mod generated {
    #![allow(clippy::all, clippy::pedantic, clippy::nursery, clippy::style, clippy::complexity, clippy::correctness, clippy::perf)]
    use super::*;
    include!("generated/lapack_missing.rs");
}

pub use generated::*;