|
||
char *strupr( char *s )
char *s; /* a string */
|
|
|
Synopsis |
#include "string.h"
The strupr function converts each lowercase letter in s into its equivalent uppercase letter.
|
|
Parameters |
s is a null-terminated string.
|
|
Return Value |
strupr returns s .
|
|
See Also |
|
|
|
|