| 1377 | } |
| 1378 | |
| 1379 | txBigInt *fxBigInt_inc(txMachine* the, txBigInt *r, txBigInt *a) |
| 1380 | { |
| 1381 | return fxBigInt_add(the, r, a, (txBigInt *)&gxBigIntOne); |
| 1382 | } |
| 1383 | |
| 1384 | txBigInt *fxBigInt_neg(txMachine* the, txBigInt *r, txBigInt *a) |
| 1385 | { |
nothing calls this directly
no test coverage detected