index
:
rust-openssl
0.9.x
gh-pages
master
Unnamed repository; edit this file 'description' to name the repository.
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
native
/
bn_is_zero.c
blob: b0a4300b47068ce69eefaf544599ac9610c50e93 (
plain
) (
blame
)
1
2
3
4
#include
<openssl/bn.h>
int
bn_is_zero
(
BIGNUM
*
x
)
{
return
BN_is_zero
(
x
);
}