Line data Source code
1 : #include "tommath_private.h" 2 : #ifdef BN_MP_ISEVEN_C 3 : /* LibTomMath, multiple-precision integer library -- Tom St Denis */ 4 : /* SPDX-License-Identifier: Unlicense */ 5 : 6 0 : mp_bool mp_iseven(const mp_int *a) 7 : { 8 0 : return MP_IS_EVEN(a) ? MP_YES : MP_NO; 9 : } 10 : #endif