LAPACK 3.12.1
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches

◆ get_side_type()

void get_side_type ( char * type,
CBLAS_SIDE * side )

Definition at line 32 of file auxiliary.c.

32 {
33 if( (strncmp( type,"l",1 )==0)||(strncmp( type,"L",1 )==0) )
34 *side = CblasLeft;
35 else if( (strncmp( type,"r",1 )==0)||(strncmp( type,"R",1 )==0) )
36 *side = CblasRight;
37 else *side = UNDEFINED;
38}
@ CblasRight
Definition cblas.h:43
@ CblasLeft
Definition cblas.h:43
#define UNDEFINED
Definition cblas_test.h:28
Here is the caller graph for this function: