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