pub unsafe extern "C" fn cblas_cher2k(
layout: CBLAS_LAYOUT,
uplo: CBLAS_UPLO,
trans: CBLAS_TRANSPOSE,
n: c_int,
k: c_int,
alpha: *const c_float_complex,
a: *const c_float_complex,
lda: c_int,
b: *const c_float_complex,
ldb: c_int,
beta: c_float,
c: *mut c_float_complex,
ldc: c_int,
)