STRUPR - convert a string into upper case.

(Not in the ANSI standard)

Usage:

#include <sdgstd.h>
s2 = strupr( s1 );

Where:

char *s1;
points to the string whose letters are to be put into upper case.
char *s2;
points to the same string as "s1".

Description:

"strupr" translates the alphabetic characters in "s1" into upper case. For example,

char s1[] = "abc";
    ...
p = strupr(s1);
printf("%s",s1);
   /* prints ABC */

See Also:

expl c lib strlwr

Copyright © 1996, Thinkage Ltd.