1/* 2 Copyright Kitware, Inc. 3 Distributed under the OSI-approved BSD 3-Clause License. 4 See accompanying file Copyright.txt for details. 5*/ 6#include "test.h" 7#include "../include/kwiml/int.h" 8#include "test_int_format.h" 9#ifndef KWIML_INT_VERSION 10# error "KWIML_INT_VERSION not defined!" 11#endif 12int test_int_C(void) 13{ 14 if(!test_int_format()) 15 { 16 return 0; 17 } 18 return 1; 19} 20 21