ctype.h
来自「A Library of Efficient Data Types and Al」· C头文件 代码 · 共 38 行
H
38 行
/*******************************************************************************++ LEDA 4.5 +++ ctype.h+++ Copyright (c) 1995-2004+ by Algorithmic Solutions Software GmbH+ All rights reserved.+ *******************************************************************************/// $Revision: 1.3 $ $Date: 2004/02/06 11:19:48 $#define LEDA_STD_INCLUDE#if defined(LEDA_STD_HEADERS)#include <cctype>#if __BORLANDC__ >= 0x540using std::isalpha;using std::isspace;using std::isdigit;using std::isprint;using std::tolower;#endif#else#include <ctype.h>#endif#undef LEDA_STD_INCLUDE
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?