mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 02:22:30 +00:00
feat(big): add SBigIsOne
This commit is contained in:
parent
9074869097
commit
c9826d2336
5 changed files with 29 additions and 0 deletions
|
|
@ -77,6 +77,10 @@ int32_t SBigIsOdd(BigData* a) {
|
|||
return IsOdd(a->Primary());
|
||||
}
|
||||
|
||||
int32_t SBigIsOne(BigData* a) {
|
||||
return IsOne(a->Primary());
|
||||
}
|
||||
|
||||
void SBigMod(BigData* a, BigData* b, BigData* c) {
|
||||
uint32_t allocCount = 0;
|
||||
auto& scratch = a->Stack().Alloc(&allocCount);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue