• Main Page
  • Modules
  • Data Structures
  • Files
  • File List
  • Globals

missing/finite.c

Go to the documentation of this file.
00001 /* public domain rewrite of finite(3) */
00002 
00003 int
00004 finite(double n)
00005 {
00006     return !isnan(n) && !isinf(n);
00007 }
00008 

Generated on Wed Sep 8 2010 21:54:58 for Ruby by  doxygen 1.7.1