|
||
int toupper( int c )
int c; /* input character */
|
|
|
Synopsis |
#include "ctype.h"
The toupper function converts c to uppercase if it is an lowercase letter.
|
|
Parameters |
c is the input character, expanded to an int .
|
|
Return Value |
toupper returns returns the resultant character, expanded to an int .
|
|
See Also |
|
|
|
|