EAGLE Help Light

strupr()

Funkce
Converts lowercase letters in a string to uppercase.

Zápis
string strupr(string s);

Returns
The strupr function returns the modified string. The original string (given as parameter) is not changed.

Viz také strlwr, toupper

Příklad


string s = "This Is A String";
string r = strupr(s);
printf("Prior to strupr: %s - after strupr: %s\n", s, r);


OBSAH Translation © 2001 ELCAD v.o.s., Copyright © 2001 CadSoft Computer GmbH