#include <ctype.h>

char* CUpString(char* s)
{                 
  char* c;
  for (c = s; *c; c++) 
    *c = toupper(*c);
  return s;
}