PLAPACK provides platform independent level-2 BLAS calls, by adding the prefix ``PLA_''. Thus the FORTRAN call
CALL DTRMV( "L", "N", "U", N, A, LDA, X, INCX )becomes the C call
PLA_dtrmv( "L", "N", "U", &n, a, &lda, x, &incx )Recall that only the first character of the string parameters are checked. Thus "N" is equivalent to "No transpose".