pub unsafe extern "C" fn cblas_zsyr2k(
    Order: CBLAS_ORDER, 
    Uplo: CBLAS_UPLO, 
    Trans: CBLAS_TRANSPOSE, 
    N: c_int, 
    K: c_int, 
    alpha: *const c_void, 
    A: *const c_void, 
    lda: c_int, 
    B: *const c_void, 
    ldb: c_int, 
    beta: *const c_void, 
    C: *mut c_void, 
    ldc: c_int
)