/src/bin/fp_signed_bin_size.c
http://github.com/libtom/tomsfastmath · C · 8 lines · 5 code · 1 blank · 2 comment · 0 complexity · 8d8abf2455ecb542d30b8df812721883 MD5 · raw file
- /* TomsFastMath, a fast ISO C bignum library. -- Tom St Denis */
- /* SPDX-License-Identifier: Unlicense */
- #include <tfm_private.h>
- int fp_signed_bin_size(fp_int *a)
- {
- return 1 + fp_unsigned_bin_size (a);
- }