toupper
int toupper(int s);
//ENDH
/**************************************************
    emulates the toupper function

    convert an integer to uppercase

***************************************************/
int toupper(int s)
{
   if(s>='a' && s <='z') s=s-' ';
   return(s);
}
