isinf.c 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* Test for positive or negative infinity.
  2. Copyright (C) 2007-2011 Free Software Foundation, Inc.
  3. This program is free software; you can redistribute it and/or modify
  4. it under the terms of the GNU Lesser General Public License as published by
  5. the Free Software Foundation; either version 2, or (at your option)
  6. any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public License along
  12. with this program; if not, write to the Free Software Foundation,
  13. Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
  14. /* Written by Ben Pfaff <blp@gnu.org>, 2008. */
  15. #include <config.h>
  16. #include <float.h>
  17. int gl_isinff (float x)
  18. {
  19. return x < -FLT_MAX || x > FLT_MAX;
  20. }
  21. int gl_isinfd (double x)
  22. {
  23. return x < -DBL_MAX || x > DBL_MAX;
  24. }
  25. int gl_isinfl (long double x)
  26. {
  27. return x < -LDBL_MAX || x > LDBL_MAX;
  28. }