_q_fcc.c

来自「操作系统SunOS 4.1.3版本的源码」· C语言 代码 · 共 60 行

C
60
字号
#ifndef lintstatic	char sccsid[] = "@(#)_Q_fcc.c 1.1 92/07/30 SMI";#endif/* * Copyright (c) 1989 by Sun Microsystems, Inc. *//* integer function _Q_feq, _Q_fne, _Q_fgt, _Q_fge, _Q_flt, _Q_fle */#include "_Qquad.h"int _Q_feq(x,y)	QUAD x,y;{	enum fcc_type	fcc;	fcc = _Q_cmp(x,y);	return (fcc_equal==fcc);}int _Q_fne(x,y)	QUAD x,y;{	enum fcc_type	fcc;	fcc = _Q_cmp(x,y);	return (fcc_equal!=fcc);}int _Q_fgt(x,y)	QUAD x,y;{	enum fcc_type	fcc;	fcc = _Q_cmpe(x,y);	return (fcc_greater==fcc);}int _Q_fge(x,y)	QUAD x,y;{	enum fcc_type	fcc;	fcc = _Q_cmpe(x,y);	return (fcc_greater==fcc||fcc_equal==fcc);}int _Q_flt(x,y)	QUAD x,y;{	enum fcc_type	fcc;	fcc = _Q_cmpe(x,y);	return (fcc_less==fcc);}int _Q_fle(x,y)	QUAD x,y;{	enum fcc_type	fcc;	fcc = _Q_cmpe(x,y);	return (fcc_less==fcc||fcc_equal==fcc);}

⌨️ 快捷键说明

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