diff options
Diffstat (limited to 'BigInt.h')
| -rw-r--r-- | BigInt.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -23,6 +23,11 @@ Result B_free(BigInt *bigint); Result B_sum(BigInt *a, BigInt b); Result B_sub(BigInt *a, BigInt b); + +Result B_compl(BigInt *x); +Result B_bitand(BigInt *x, BigInt *y); +Result B_bitor(BigInt *x, BigInt *y); +Result B_bitxor(BigInt *x, BigInt *y); Result B_rshift(BigInt *x, usize shift); Result B_lshift(BigInt *x, usize shift); |
