mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-19 03:25:54 -04:00

to reflect the new license. These used slightly different spellings that defeated my regular expressions. We understand that people may be surprised that we're moving the header entirely to discuss the new license. We checked this carefully with the Foundation's lawyer and we believe this is the correct approach. Essentially, all code in the project is now made available by the LLVM project under our new license, so you will see that the license headers include that license only. Some of our contributors have contributed code under our old license, and accordingly, we have retained a copy of our old license notice in the top-level files in each project and repository. llvm-svn: 351648
121 lines
1.7 KiB
C++
121 lines
1.7 KiB
C++
// -*- C++ -*-
|
|
//===---------------------------- cctype ----------------------------------===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef _LIBCPP_CCTYPE
|
|
#define _LIBCPP_CCTYPE
|
|
|
|
/*
|
|
cctype synopsis
|
|
|
|
namespace std
|
|
{
|
|
|
|
int isalnum(int c);
|
|
int isalpha(int c);
|
|
int isblank(int c); // C99
|
|
int iscntrl(int c);
|
|
int isdigit(int c);
|
|
int isgraph(int c);
|
|
int islower(int c);
|
|
int isprint(int c);
|
|
int ispunct(int c);
|
|
int isspace(int c);
|
|
int isupper(int c);
|
|
int isxdigit(int c);
|
|
int tolower(int c);
|
|
int toupper(int c);
|
|
|
|
} // std
|
|
*/
|
|
|
|
#include <__config>
|
|
#include <ctype.h>
|
|
|
|
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
|
|
#pragma GCC system_header
|
|
#endif
|
|
|
|
_LIBCPP_BEGIN_NAMESPACE_STD
|
|
|
|
#ifdef isalnum
|
|
#undef isalnum
|
|
#endif
|
|
|
|
#ifdef isalpha
|
|
#undef isalpha
|
|
#endif
|
|
|
|
#ifdef isblank
|
|
#undef isblank
|
|
#endif
|
|
|
|
#ifdef iscntrl
|
|
#undef iscntrl
|
|
#endif
|
|
|
|
#ifdef isdigit
|
|
#undef isdigit
|
|
#endif
|
|
|
|
#ifdef isgraph
|
|
#undef isgraph
|
|
#endif
|
|
|
|
#ifdef islower
|
|
#undef islower
|
|
#endif
|
|
|
|
#ifdef isprint
|
|
#undef isprint
|
|
#endif
|
|
|
|
#ifdef ispunct
|
|
#undef ispunct
|
|
#endif
|
|
|
|
#ifdef isspace
|
|
#undef isspace
|
|
#endif
|
|
|
|
#ifdef isupper
|
|
#undef isupper
|
|
#endif
|
|
|
|
#ifdef isxdigit
|
|
#undef isxdigit
|
|
#endif
|
|
|
|
#ifdef tolower
|
|
#undef tolower
|
|
#endif
|
|
|
|
#ifdef toupper
|
|
#undef toupper
|
|
#endif
|
|
|
|
|
|
using ::isalnum;
|
|
using ::isalpha;
|
|
using ::isblank;
|
|
using ::iscntrl;
|
|
using ::isdigit;
|
|
using ::isgraph;
|
|
using ::islower;
|
|
using ::isprint;
|
|
using ::ispunct;
|
|
using ::isspace;
|
|
using ::isupper;
|
|
using ::isxdigit;
|
|
using ::tolower;
|
|
using ::toupper;
|
|
|
|
_LIBCPP_END_NAMESPACE_STD
|
|
|
|
#endif // _LIBCPP_CCTYPE
|