INtime SDK Help
strupr

Converts any lowercase letters in a null-terminated string to uppercase.

#include <string.h>
char *strupr (char *string);
char *_strupr (char *string);

Parameters

string
String to be capitalized. A pointer to the converted string.

Remarks

Does not affect characters other than lowercase.  _strupr is an alternate name for strupr.

Return Values

A pointer to the converted string.
Success.
No error return.
Failure.

Requirements

Versions Defined in Include Link to
INtime 3.0 intime/rt/include/string.h string.h clib.lib

See Also

strlwr