# include <string.h>
 
void  
capitalize (/*@out@*/ char *s,
            char *t)
{
  strcpy (s, t);
  *s = toupper (*s);
}


syntax highlighted by Code2HTML, v. 0.9.1