C
char * strupr( char* s );
Description
This function converts strings to uppercase on platforms that do not already have this function defined. All lower-case characters are converted, an characters not included in 'a'-'z' are left as-is.
Preconditions
None
Parameters
Parameters |
Description |
s |
the null-terminated string to be converted. |
Returns
Pointer to the initial string.