/*********************************
 ** File 2darray.h
 ** Author: S. Evans
 ** Date: 10/31/06
 ** Section: 02XX & 201H 0101
 ** E-Mail: bogar@cs.umbc.edu
 **
 ** This file contains function prototypes for dynamic memory
 ** allocation of a 2 dimensional array
 ** of integers
*******************************/
 
char **GetTwoDSpace(int rows, int cols);
void  FreeTwoDSpace(char **array, int rows);
 

