zoicheck.c

来自「linux下用PCMCIA无线网卡虚拟无线AP的程序源码」· C语言 代码 · 共 17 行

C
17
字号
/* * Copyright (C) 2000 Manuel Novoa III * * This is a utility routine for strtod errno support. * As the name implies, it checks if a double is either 0 or +/-infinity. * Doing this inline doesn't work on i386 because of excess precission * stored in the FPU. * * TODO: Check bitmasks directly? */int _zero_or_inf_check(double x){	return ( x == x/4 );}

⌨️ 快捷键说明

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