pub type BIGNUM = bignum_st;
struct BIGNUM { pub d: *mut u64, pub width: i32, pub dmax: i32, pub neg: i32, pub flags: i32, }
d: *mut u64
width: i32
dmax: i32
neg: i32
flags: i32