home *** CD-ROM | disk | FTP | other *** search
- /*
- * Matrix allocation and freeing Functions.
- *
- * allocmatrix.h
- *
- * Peter Janssen - janssen@cs.kuleuven.ac.be
- *
- */
-
- extern void **allocMatrix();
- extern void freeMatrix();
-
-
- #define AllocMatrix(object, y, x) \
- ((object **) allocMatrix(sizeof(object), y, x))
- #define FreeMatrix(matrix, y) freeMatrix((void **) matrix, y)
-