Branch
Hash :
5948807b
Author :
Date :
2025-05-19T21:23:56
stdckdint-h C++ tests: Verify the ckd_* functions can be invoked. * tests/test-stdckdint-h-c++.cc (main): Invoke ckd_add, ckd_sub, and ckd_mul.
/* Test of <stdckdint.h> substitute in C++ mode.
Copyright (C) 2022-2025 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. */
/* Written by Bruno Haible <bruno@clisp.org>, 2022. */
#define GNULIB_NAMESPACE gnulib
#include <config.h>
#include <stdckdint.h>
int
main ()
{
/* We only check that the macros can be invoked here. The actual tests are
performed by the C program. */
int r;
int a = 1;
int b = 1;
return !!(ckd_add (&r, a, b) || ckd_sub (&r, a, b) || ckd_mul (&r, a, b));
}