EAGLE Help
strupr()
-
Function
-
Converts lowercase letters in a string to uppercase.
-
Syntax
-
string strupr(string s);
-
Returns
-
The strupr function returns the modified string.
The original string (given as parameter) is not changed.
See also strlwr,
toupper
Example
string s = "This Is A String";
string r = strupr(s);
printf("Prior to strupr: %s - after strupr: %s\n", s, r);
Index
|
Copyright © 2005 CadSoft Computer GmbH
|