| 1038 | #endif |
| 1039 | |
| 1040 | int fxBigInt_isset(txBigInt *e, txU4 i) |
| 1041 | { |
| 1042 | txU4 w = e->data[i / mxBigIntWordSize]; |
| 1043 | return((w & ((txU4)1 << (i % mxBigIntWordSize))) != 0); |
| 1044 | } |
| 1045 | |
| 1046 | /* |
| 1047 | * bitwise operations |
no outgoing calls
no test coverage detected