STL/stl/inc/cwctype

74 строки
1.4 KiB
C++

// cwctype standard header
// Copyright (c) Microsoft Corporation.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#pragma once
#ifndef _CWCTYPE_
#define _CWCTYPE_
#include <yvals.h>
#if _STL_COMPILER_PREPROCESSOR
#include <wctype.h>
#pragma pack(push, _CRT_PACKING)
#pragma warning(push, _STL_WARNING_LEVEL)
#pragma warning(disable : _STL_DISABLED_WARNINGS)
_STL_DISABLE_CLANG_WARNINGS
#pragma push_macro("new")
#undef new
// remove any (improper) macro overrides
#undef iswalnum
#undef iswalpha
#undef iswblank
#undef iswcntrl
#undef iswctype
#undef iswdigit
#undef iswgraph
#undef iswlower
#undef iswprint
#undef iswpunct
#undef iswspace
#undef iswupper
#undef iswxdigit
#undef towctrans
#undef towlower
#undef towupper
#undef wctrans
#undef wctype
_STD_BEGIN
using _CSTD wint_t;
using _CSTD wctrans_t;
using _CSTD wctype_t;
using _CSTD iswalnum;
using _CSTD iswalpha;
using _CSTD iswcntrl;
using _CSTD iswctype;
using _CSTD iswdigit;
using _CSTD iswgraph;
using _CSTD iswlower;
using _CSTD iswprint;
using _CSTD iswpunct;
using _CSTD iswspace;
using _CSTD iswupper;
using _CSTD iswxdigit;
using _CSTD towctrans;
using _CSTD towlower;
using _CSTD towupper;
using _CSTD wctrans;
using _CSTD wctype;
using _CSTD iswblank;
_STD_END
#pragma pop_macro("new")
_STL_RESTORE_CLANG_WARNINGS
#pragma warning(pop)
#pragma pack(pop)
#endif // _STL_COMPILER_PREPROCESSOR
#endif // _CWCTYPE_