LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
void get_diag_type ( char *  type,
CBLAS_DIAG diag 
)

Definition at line 25 of file auxiliary.c.

25  {
26  if( (strncmp( type,"u",1 )==0)||(strncmp( type,"U",1 )==0) )
27  *diag = CblasUnit;
28  else if( (strncmp( type,"n",1 )==0)||(strncmp( type,"N",1 )==0) )
29  *diag = CblasNonUnit;
30  else *diag = UNDEFINED;
31 }
#define UNDEFINED
Definition: cblas_test.h:19

Here is the caller graph for this function: