ucase
void ucase(char *s);
//ENDH
/**********************************************
    convert a string to uppercase
***********************************************/
void ucase(char *s)
{
   int t;

   for(t=0; ; t++){
      if(s[t]==0) break;
      s[t]=toupper(s[t]);
   }
}
