LISTING 5 - Header File Used by Example Programs /* Test.h This is a header file used by several programs. It contains some #includes, and vector and matrix display routines. This code is FREELY DISTRIBUTABLE but NOT PUBLIC DOMAIN. (Written by Randy Finch) */ #include #include #include #include #include #include #include /* Matrix.h contains all the #pragmas created by fd2pragma. MatrixProto.h contains all the Matrix.library function prototypes. */ #include "Matrix.h" #include "MatrixProto.h" struct Library *Matrix; /* Global Library base pointer */ /*---------------------------------------------------------- Display routines ------------------------------------------------------------*/ void DisplayLVector(lv,numels) LONG *lv, numels; { LONG i; printf("\n"); for (i=0 ; i