Files
CMake/test/test_int_C.c
KWIML Upstream 3fdbb0a806 KWIML 2015-12-09 (43f9f8d0)
Code extracted from:

    https://github.com/Kitware/KWIML.git

at commit 43f9f8d0b0c8ee62aa056a2020981a6d98a40dd4 (master).
2015-12-17 14:56:38 -05:00

20 lines
385 B
C

/*
Copyright Kitware, Inc.
Distributed under the OSI-approved BSD 3-Clause License.
See accompanying file Copyright.txt for details.
*/
#include "test.h"
#include "../include/kwiml/int.h"
#include "test_int_format.h"
#ifndef KWIML_INT_VERSION
# error "KWIML_INT_VERSION not defined!"
#endif
int test_int_C(void)
{
if(!test_int_format())
{
return 0;
}
return 1;
}