.\" ident @(#)isalpha.3 .\" Standard Template Library .\" $$RW_INSERT_HEADER "slyrs.man" .TH isalpha 3C++ "02 Apr 1998" "Rogue Wave Software" "-" .ce2 Standard C++ Library Copyright 1998, Rogue Wave Software, Inc. .SH NAME \f2isalpha\fP \ - Determines if a character is alphabetic. .SH SYNOPSIS .br #include .br .br template .br bool isalpha (charT c, const locale& loc) const; .SH DESCRIPTION The isalpha_function returns \f2true\fP if the character passed as a parameter is part of the alphabet specified by the locale parameter. Otherwise the function returns \f2false\fP. The check is made using the \f2ctype\fP facet from the locale parameter. .SH SEE ALSO other_is_functions, locale, ctype