blob: 426f0f277382e5f47a97e9810a77b694351345d5 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// ÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊThe LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <locale>
// template <class charT> bool ispunct (charT c, const locale& loc);
#include <locale>
#include <cassert>
int main()
{
std::locale l;
assert(!std::ispunct(' ', l));
assert( std::ispunct('<', l));
assert(!std::ispunct('\x8', l));
assert(!std::ispunct('A', l));
assert(!std::ispunct('a', l));
assert(!std::ispunct('z', l));
assert(!std::ispunct('3', l));
assert( std::ispunct('.', l));
assert(!std::ispunct('f', l));
assert(!std::ispunct('9', l));
assert( std::ispunct('+', l));
}