mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
Code extracted from:
https://github.com/Kitware/KWIML.git
at commit 43f9f8d0b0c8ee62aa056a2020981a6d98a40dd4 (master).
20 lines
385 B
C
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;
|
|
}
|