| 975 | } |
| 976 | |
| 977 | void fxBigInt_copy(txBigInt *a, txBigInt *b) |
| 978 | { |
| 979 | c_memmove(a->data, b->data, b->size * sizeof(txU4)); |
| 980 | a->size = b->size; |
| 981 | a->sign = b->sign; |
| 982 | } |
| 983 | |
| 984 | txBigInt *fxBigInt_dup(txMachine* the, txBigInt *a) |
| 985 | { |
no outgoing calls
no test coverage detected