test_INT_C.c 698 B

12345678910111213141516171819202122
  1. /*============================================================================
  2. Kitware Information Macro Library
  3. Copyright 2010-2011 Kitware, Inc.
  4. Distributed under the OSI-approved BSD License (the "License");
  5. see accompanying file Copyright.txt for details.
  6. This software is distributed WITHOUT ANY WARRANTY; without even the
  7. implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  8. See the License for more information.
  9. ============================================================================*/
  10. #include "test.h"
  11. #include KWIML_HEADER(INT.h)
  12. #include "test_INT_format.h"
  13. int test_INT_C(void)
  14. {
  15. if(!test_INT_format())
  16. {
  17. return 0;
  18. }
  19. return 1;
  20. }