mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 02:22:30 +00:00
feat(big): add SBigCopy
This commit is contained in:
parent
6801b32a99
commit
94ef375b19
3 changed files with 24 additions and 0 deletions
|
|
@ -32,6 +32,10 @@ int32_t SBigCompare(BigData* a, BigData* b) {
|
|||
return Compare(a->Primary(), b->Primary());
|
||||
}
|
||||
|
||||
void SBigCopy(BigData* a, BigData* b) {
|
||||
a->m_primary = b->m_primary;
|
||||
}
|
||||
|
||||
void SBigDel(BigData* num) {
|
||||
delete num;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue