| 941 | } |
| 942 | |
| 943 | int fxBigInt_comp(txBigInt *a, txBigInt *b) |
| 944 | { |
| 945 | if (a->sign != b->sign) |
| 946 | return(a->sign ? -1: 1); |
| 947 | else if (a->sign) |
| 948 | return(fxBigInt_ucomp(b, a)); |
| 949 | else |
| 950 | return(fxBigInt_ucomp(a, b)); |
| 951 | } |
| 952 | |
| 953 | int fxBigInt_ucomp(txBigInt *a, txBigInt *b) |
| 954 | { |
no test coverage detected