isdigit
int isdigit(int c);
//ENDH
/**************************************************
    emulates the isdigit function

    test if an integer is between '0' and '9'

***************************************************/
int isdigit(int c)
{
	if(c>='0' && c<='9') return(TRUE);
	else return(FALSE);
}
