.\" ident @(#)isspace.3 .\" Standard Template Library .\" $$RW_INSERT_HEADER "slyrs.man" .TH isspace 3C++ "02 Apr 1998" "Rogue Wave Software" "-" .ce2 Standard C++ Library Copyright 1998, Rogue Wave Software, Inc. .SH NAME \f2isspace\fP \ - Determines if a character is a space. .SH SYNOPSIS .br #include .br .br template .br bool isspace (charT c, const locale& loc) const; .SH DESCRIPTION The isspace function returns \f2true\fP if the character passed as a parameter is a space character. 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