aboutsummaryrefslogtreecommitdiff
path: root/BigInt.h
diff options
context:
space:
mode:
authorSyndamia <kamen@syndamia.com>2026-06-12 12:14:34 +0300
committerSyndamia <kamen@syndamia.com>2026-07-12 09:14:06 +0300
commitd769c93ef5965aea956171b8622e976a0a7c2863 (patch)
tree07f117c1a8940e749cf8c6f832d8ad4c8ace13f0 /BigInt.h
parentdc5d2d68ca0be3c82a65975d297fa69b5c3b3a13 (diff)
downloadfoollib-d769c93ef5965aea956171b8622e976a0a7c2863.tar
foollib-d769c93ef5965aea956171b8622e976a0a7c2863.tar.gz
foollib-d769c93ef5965aea956171b8622e976a0a7c2863.zip
feat(BigInt): Replace B_bytes with B_bits
Diffstat (limited to 'BigInt.h')
-rw-r--r--BigInt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/BigInt.h b/BigInt.h
index 9eb52a4..939d1d1 100644
--- a/BigInt.h
+++ b/BigInt.h
@@ -30,7 +30,7 @@ Result B_lshift(BigInt *x, usize shift);
/* Get */
-usize B_bytes(const BigInt x);
+usize B_bits(const BigInt x);
usize B_bitwidth(const BigInt x);
char* B_tostr(MemoryManager *mm, const BigInt x);