matrix.h
00001 #ifndef MATRIX_H
00002 #define MATRIX_H
00003 
00004 //  allocate space for a matrix
00005 void  **matrix(int, int, int);
00006 
00007 //  free space for  a matrix
00008 void free_matrix(void **);
00009 
00010 #endif // MATRIX_H
 All Classes Functions