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

📄 lex_no_ws.c

📁 操作系统SunOS 4.1.3版本的源码
💻 C
字号:
#ifndef lintstatic	char	sccsid[] = "@(#)lex_no_ws.c 1.1 92/07/30";#endif/* *	Name:		lex_no_ws.c * *	Description:	Determine if the current input to a field, 'ch', *		is not whitespace.  If the input is not whitespace, then *		one is returned.  Otherwise, zero is returned. * *	Call syntax:	ret_code = lex_no_ws(start_p, end_p, ch); * *	Parameters:	char *		start_p; *			char *		end_p; *			char		ch; * *	Return value:	int		ret_code; */#include <ctype.h>#include "menu.h"intlex_no_ws(start_p, end_p, ch)	char *		start_p;	char *		end_p;	char		ch;{#ifdef lint	start_p = start_p;	end_p = end_p;#endif lint	return((isprint(ch) && !isspace(ch)) ? 1 : 0);} /* end lex_no_ws() */

⌨️ 快捷键说明

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