blob: f4cb6370cedbaf2ca62aa26a7c36f9eb81c3f2c5 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// <locale>
// template <class charT> bool isalnum (charT c, const locale& loc);
#include <locale>
#include <cassert>
#include "test_macros.h"
int main(int, char**)
{
std::locale l;
assert(!std::isalnum(' ', l));
assert(!std::isalnum('<', l));
assert(!std::isalnum('\x8', l));
assert( std::isalnum('A', l));
assert( std::isalnum('a', l));
assert( std::isalnum('z', l));
assert( std::isalnum('3', l));
assert(!std::isalnum('.', l));
assert( std::isalnum('f', l));
assert( std::isalnum('9', l));
assert(!std::isalnum('+', l));
return 0;
}