Standard C++ Library
Copyright 1998, Rogue Wave Software, Inc.
isxdigit
- Determines whether a character is a hexadecimal digit.
#include <locale>
template <class charT>
bool isxdigit (charT c, const locale& loc) const;
The isxdigit_function returns true if the character passed
as a parameter is a hexadecimal digit. Otherwise the func-
tion returns false. The check is made using the ctype
facet from the locale parameter.
Other 'is' functions, locale, ctype