Function stptrs_

Solves a triangular system of linear equations AX=B, A**T X=B or A**H X=B, where A is held in packed storage.

extern(C) void stptrs_ (
  char* uplo,
  char* trans,
  char* diag,
  int* n,
  int* nrhs,
  float* ap,
  float* b,
  int* ldb,
  int* info,
  int uplo_len,
  int trans_len,
  int diag_len
);