⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 vcl_cctype.h

📁 DTMK软件开发包,此为开源软件,是一款很好的医学图像开发资源.
💻 H
字号:
// This is vcl/vcl_cctype.h
#ifndef vcl_cctype_h_
#define vcl_cctype_h_
//:
// \file
// \author fsm

#include "vcl_compiler.h"

#if !VCL_CXX_HAS_HEADER_CCTYPE
# include <ctype.h>
# define vcl_generic_cctype_STD /* */
# include "generic/vcl_cctype.h"
#elif defined(VCL_VC)
  // VC doesn't put the cctype in STD
# define vcl_generic_cctype_STD /* */
#include <cctype>
# include "generic/vcl_cctype.h"
#else
# include "iso/vcl_cctype.h"
#endif

// Sometimes they are not functions, but macros (this is non-standard).
//  isspace
//  isprint
//  iscntrl
//  isupper
//  islower
//  isalpha
//  isdigit
//  ispunct
//  isxdigit
//  isalnum
//  isgraph
#ifdef isspace
# undef  vcl_isspace
# define vcl_isspace isspace
#endif

#ifdef isprint
# undef  vcl_isprint
# define vcl_isprint isprint
#endif

#ifdef iscntrl
# undef  vcl_iscntrl
# define vcl_iscntrl iscntrl
#endif

#ifdef isupper
# undef  vcl_isupper
# define vcl_isupper isupper
#endif

#ifdef toupper
# undef  vcl_toupper
# define vcl_toupper toupper
#endif

#ifdef islower
# undef  vcl_islower
# define vcl_islower islower
#endif

#ifdef tolower
# undef  vcl_tolower
# define vcl_tolower tolower
#endif

#ifdef isalpha
# undef  vcl_isalpha
# define vcl_isalpha isalpha
#endif

#ifdef isdigit
# undef  vcl_isdigit
# define vcl_isdigit isdigit
#endif

#ifdef ispunct
# undef  vcl_ispunct
# define vcl_ispunct ispunct
#endif

#ifdef isxdigit
# undef  vcl_isxdigit
# define vcl_isxdigit isxdigit
#endif

#ifdef isalnum
# undef  vcl_isalnum
# define vcl_isalnum isalnum
#endif

#ifdef isgraph
# undef  vcl_isgraph
# define vcl_isgraph isgraph
#endif

#endif // vcl_cctype_h_

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -