home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 9 / FreshFishVol9-CD2.bin / bbs / gnu / libnix-0.8-src.lha / libnix-0.8 / sources / math / stdio / isinf.c next >
Encoding:
Text File  |  1994-12-18  |  128 b   |  6 lines

  1. int isinf(double a)
  2. {
  3.   unsigned long *b=(unsigned long *)&a;
  4.   return (b[0]&0x7ff00000)==0x7ff00000&&!(b[0]&0xfffff)&&!b[1];
  5. }
  6.