| 507 | } |
| 508 | |
| 509 | int Decimal64::sign() const |
| 510 | { |
| 511 | if (decDoubleIsZero(&dec)) |
| 512 | return 0; |
| 513 | if (decDoubleIsSigned(&dec)) |
| 514 | return -1; |
| 515 | return 1; |
| 516 | } |
| 517 | |
| 518 | #ifdef DEV_BUILD |
| 519 | int Decimal64::show() |
no outgoing calls
no test coverage detected