//===--- clang/Basic/CharInfo.h - Classifying ASCII Characters --*- C++ -*-===// // // 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 LLVM_CLANG_BASIC_CHARINFO_H #define LLVM_CLANG_BASIC_CHARINFO_H #include "clang/Basic/LLVM.h" #include "llvm/ADT/StringRef.h" #include "llvm/Support/Compiler.h" #include "llvm/Support/DataTypes.h" namespace clang { namespace charinfo { extern const uint16_t InfoTable[256]; enum { … }; enum { … }; } // end namespace charinfo /// Returns true if a byte is an ASCII character. LLVM_READNONE inline bool isASCII(char c) { … } LLVM_READNONE inline bool isASCII(unsigned char c) { … } /// Returns true if a codepoint is an ASCII character. LLVM_READNONE inline bool isASCII(uint32_t c) { … } LLVM_READNONE inline bool isASCII(int64_t c) { … } /// Returns true if this is a valid first character of a C identifier, /// which is [a-zA-Z_]. LLVM_READONLY inline bool isAsciiIdentifierStart(unsigned char c, bool AllowDollar = false) { … } LLVM_READONLY inline bool isAsciiIdentifierContinue(unsigned char c) { … } /// Returns true if this is a body character of a C identifier, /// which is [a-zA-Z0-9_]. LLVM_READONLY inline bool isAsciiIdentifierContinue(unsigned char c, bool AllowDollar) { … } /// Returns true if this character is horizontal ASCII whitespace: /// ' ', '\\t', '\\f', '\\v'. /// /// Note that this returns false for '\\0'. LLVM_READONLY inline bool isHorizontalWhitespace(unsigned char c) { … } /// Returns true if this character is vertical ASCII whitespace: '\\n', '\\r'. /// /// Note that this returns false for '\\0'. LLVM_READONLY inline bool isVerticalWhitespace(unsigned char c) { … } /// Return true if this character is horizontal or vertical ASCII whitespace: /// ' ', '\\t', '\\f', '\\v', '\\n', '\\r'. /// /// Note that this returns false for '\\0'. LLVM_READONLY inline bool isWhitespace(unsigned char c) { … } /// Return true if this character is an ASCII digit: [0-9] LLVM_READONLY inline bool isDigit(unsigned char c) { … } /// Return true if this character is a lowercase ASCII letter: [a-z] LLVM_READONLY inline bool isLowercase(unsigned char c) { … } /// Return true if this character is an uppercase ASCII letter: [A-Z] LLVM_READONLY inline bool isUppercase(unsigned char c) { … } /// Return true if this character is an ASCII letter: [a-zA-Z] LLVM_READONLY inline bool isLetter(unsigned char c) { … } /// Return true if this character is an ASCII letter or digit: [a-zA-Z0-9] LLVM_READONLY inline bool isAlphanumeric(unsigned char c) { … } /// Return true if this character is an ASCII hex digit: [0-9a-fA-F] LLVM_READONLY inline bool isHexDigit(unsigned char c) { … } /// Return true if this character is an ASCII punctuation character. /// /// Note that '_' is both a punctuation character and an identifier character! LLVM_READONLY inline bool isPunctuation(unsigned char c) { … } /// Return true if this character is an ASCII printable character; that is, a /// character that should take exactly one column to print in a fixed-width /// terminal. LLVM_READONLY inline bool isPrintable(unsigned char c) { … } /// Return true if this is the body character of a C preprocessing number, /// which is [a-zA-Z0-9_.]. LLVM_READONLY inline bool isPreprocessingNumberBody(unsigned char c) { … } /// Return true if this is the body character of a C++ raw string delimiter. LLVM_READONLY inline bool isRawStringDelimBody(unsigned char c) { … } enum class EscapeChar { … }; /// Return C-style escaped string for special characters, or an empty string if /// there is no such mapping. template <EscapeChar Opt, class CharT> LLVM_READONLY inline auto escapeCStyle(CharT Ch) -> StringRef { … } /// Converts the given ASCII character to its lowercase equivalent. /// /// If the character is not an uppercase character, it is returned as is. LLVM_READONLY inline char toLowercase(char c) { … } /// Converts the given ASCII character to its uppercase equivalent. /// /// If the character is not a lowercase character, it is returned as is. LLVM_READONLY inline char toUppercase(char c) { … } /// Return true if this is a valid ASCII identifier. /// /// Note that this is a very simple check; it does not accept UCNs as valid /// identifier characters. LLVM_READONLY inline bool isValidAsciiIdentifier(StringRef S, bool AllowDollar = false) { … } } // end namespace clang #endif