LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
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 }
#define UNDEFINED
Definition: cblas_test.h:19

Here is the caller graph for this function: