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

📄 ckf_uint.c

📁 操作系统SunOS 4.1.3版本的源码
💻 C
字号:
#ifndef lintstatic	char	sccsid[] = "@(#)ckf_uint.c 1.1 92/07/30";#endif/* *	Name:		ckf_uint.c * *	Description:	Determine if a field is an unsigned integer.  If the *		field is a valid unsigned integer, then one is returned. *		Otherwise, zero is returned. * *	Call syntax:	ret_code = ckf_uint(arg_p, field_p); * *	Parameters:	pointer		arg_p; *			char *		field_p; * *	Return value:	int		ret_code; */#include <string.h>#include "menu.h"intckf_uint(arg_p, field_p)	pointer		arg_p;	char *		field_p;{	extern	int		atoi();#ifdef lint	arg_p = arg_p;#endif	if (strchr(field_p, '-') || (atoi(field_p) == 0 && *field_p != '0')) {		menu_mesg("Field is not a valid unsigned integer.");		return(0);	}	return(1);} /* end ckf_uint() */

⌨️ 快捷键说明

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