LAPACK  3.9.0
LAPACK: Linear Algebra PACKage

◆ 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 }
Here is the caller graph for this function:
UNDEFINED
#define UNDEFINED
Definition: cblas_test.h:19
CblasRight
Definition: cblas.h:23
CblasLeft
Definition: cblas.h:23