Line | Count | Source (jump to first uncovered line) |
1 | #include "tommath_private.h" | |
2 | #ifdef BN_MP_ZERO_C | |
3 | /* LibTomMath, multiple-precision integer library -- Tom St Denis */ | |
4 | /* SPDX-License-Identifier: Unlicense */ | |
5 | ||
6 | /* set to zero */ | |
7 | void mp_zero(mp_int *a) | |
8 | 0 | { |
9 | 0 | a->sign = MP_ZPOS; |
10 | 0 | a->used = 0; |
11 | 0 | MP_ZERO_DIGITS(a->dp, a->alloc); |
12 | 0 | } |
13 | #endif |