![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /proc/thread-self/root/usr/include/boost/spirit/home/support/char_encoding/ |
Upload File : |
/*============================================================================= Copyright (c) 2001-2011 Hartmut Kaiser Copyright (c) 2001-2011 Joel de Guzman Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) =============================================================================*/ #if !defined(BOOST_SPIRIT_STANDARD_APRIL_26_2006_1106PM) #define BOOST_SPIRIT_STANDARD_APRIL_26_2006_1106PM #if defined(_MSC_VER) #pragma once #endif #include <cctype> #include <boost/cstdint.hpp> namespace boost { namespace spirit { namespace char_encoding { /////////////////////////////////////////////////////////////////////////// // Test characters for specified conditions (using std functions) /////////////////////////////////////////////////////////////////////////// struct standard { typedef char char_type; static bool isascii_(int ch) { return 0 == (ch & ~0x7f); } static bool ischar(int ch) { // uses all 8 bits // we have to watch out for sign extensions return (0 == (ch & ~0xff) || ~0 == (ch | 0xff)) ? true : false; } static bool isalnum(int ch) { return std::isalnum(ch) ? true : false; } static bool isalpha(int ch) { return std::isalpha(ch) ? true : false; } static bool isdigit(int ch) { return std::isdigit(ch) ? true : false; } static bool isxdigit(int ch) { return std::isxdigit(ch) ? true : false; } static bool iscntrl(int ch) { return std::iscntrl(ch) ? true : false; } static bool isgraph(int ch) { return std::isgraph(ch) ? true : false; } static bool islower(int ch) { return std::islower(ch) ? true : false; } static bool isprint(int ch) { return std::isprint(ch) ? true : false; } static bool ispunct(int ch) { return std::ispunct(ch) ? true : false; } static bool isspace(int ch) { return std::isspace(ch) ? true : false; } static bool isblank BOOST_PREVENT_MACRO_SUBSTITUTION (int ch) { return (ch == ' ' || ch == '\t'); } static bool isupper(int ch) { return std::isupper(ch) ? true : false; } /////////////////////////////////////////////////////////////////////////////// // Simple character conversions /////////////////////////////////////////////////////////////////////////////// static int tolower(int ch) { return std::tolower(ch); } static int toupper(int ch) { return std::toupper(ch); } static ::boost::uint32_t toucs4(int ch) { return ch; } }; }}} #endif