vcl_cwctype.h

来自「InsightToolkit-1.4.0(有大量的优化算法程序)」· C头文件 代码 · 共 25 行

H
25
字号
#ifndef vcl_cwctype_h_
#define vcl_cwctype_h_
/*
  fsm
*/

#include "vcl_compiler.h"

#if !VCL_CXX_HAS_HEADER_CWCTYPE
# include <wctype.h>
#elif defined(hpux)
// PVr: HP does not have /usr/include/wctype.h
// fsm: but the compiler might supply <cwctype>?
// PVr: but that file probably just #includes wctype.h?
# include <wchar.h>
#elif defined(sun)
// PVr: solaris 2.7 does not declare iswblank
extern "C" int iswblank(unsigned int);
# include "iso/vcl_cwctype.h"
#else
# include "iso/vcl_cwctype.h"
#endif

#endif // vcl_cwctype_h_

⌨️ 快捷键说明

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