// Name:  McCabe, Micheal H.
// Date:  March 18, 2009
// Project:   Simple_Calculator_V5
// Filename:  IsDigit.cpp

// File Edit History:
//
// This file was dictated to us in class on 03/11.  Moved to its own file on
// 03/18.

#include "calc_headers.h"
bool IsDigit(char chr2)
{
// Tests whether or not the char chr2 is a digit
bool flag = true;
if ( (int) chr2 < 48 || (int) chr2 >57 )
   flag = false;
return flag;     
}
