(Not in the ANSI standard)
#include <sdgstd.h> s2 = strupr( s1 );
"strupr" translates the alphabetic characters in "s1" into upper case. For example,
char s1[] = "abc";
...
p = strupr(s1);
printf("%s",s1);
/* prints ABC */
Copyright © 1996, Thinkage Ltd.