swap_case

sefun
SYNOPSIS
	string swap_case(string str)

DESCRIPTION
	Convert all characters in str from lower to upper case, resp.
        from upper to lower case, and return the new string.

EXAMPLES
        swap_case("Heya!") -> "hEYA!"

SEE ALSO
	capitalize(E), lower_case(E), upper_case(SEFUN)