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

📄 isblank.c

📁 KPIT GNU Tools is a set of GNU development tools for Renesas microcontrollers.
💻 C
字号:
/*FUNCTION	<<isblank>>---blank character predicateINDEX	isblankANSI_SYNOPSIS	#include <ctype.h>	int isblank(int <[c]>);TRAD_SYNOPSIS	#include <ctype.h>	int isblank(<[c]>);DESCRIPTION<<isblank>> is a macro which classifies ASCII integer values by tablelookup.  It is a predicate returning non-zero for blank characters, and 0 for other characters.You can use a compiled subroutine instead of the macro definition byundefining the macro using `<<#undef isblank>>'.RETURNS<<isblank>> returns non-zero if <[c]> is a blank character.*/#include <_ansi.h>#include <ctype.h>#undef isblankint_DEFUN(isblank,(c),int c){	return (c == ' ' || c == '\t');}

⌨️ 快捷键说明

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