diff options
Diffstat (limited to 'BigInt.c')
| -rw-r--r-- | BigInt.c | 26 |
1 files changed, 0 insertions, 26 deletions
@@ -141,32 +141,6 @@ B_dup(MemoryManager *mm, const BigInt bigint) { return start; } -BigInt -B_newsum(MemoryManager *mm, BigInt a, BigInt b) { - BigInt total = B_dup(mm, a); - - if (NULL == total || - R_Ok != B_sum(&total, b)) - { - return NULL; - } - - return total; -} - -BigInt -B_newsub(MemoryManager *mm, BigInt a, BigInt b) { - BigInt total = B_dup(mm, a); - - if (NULL == total || - R_Ok != B_sub(&total, b)) - { - return NULL; - } - - return total; -} - /* Free */ Result |
