boring2/native/bn_is_zero.c

5 lines
78 B
C

#include <openssl/bn.h>
int bn_is_zero(BIGNUM *x) { return BN_is_zero(x); }