Library /sys$common/syshlp/helplib.hlb CXXLSTD, locales, isupper *Conan The Librarian |
Standard C++ Library Copyright 1996, Rogue Wave Software, Inc. NAME isupper - Determines whether a character is upper case. SYNOPSIS #include <locale> template <class charT> bool isupper (charT c, const locale& loc) const; DESCRIPTION The isupper function returns true if the character passed as a parameter is upper case, otherwise the function returns false. The check is made using the ctype facet from the locale parameter. SEE ALSO other is_ functions, locale, ctype STANDARDS CONFORMANCE ANSI X3J16/ISO WG21 Joint C++ Committee
|