------------------------------------------------------------------ */ decFloatCanonical -- copy a decFloat, making canonical */ / result gets the canonicalized df */ df is the decFloat to copy and make canonical */ returns result */ / This works on specials, too; no error or exception i
| 1609 | /* This works on specials, too; no error or exception is possible. */ |
| 1610 | /* ------------------------------------------------------------------ */ |
| 1611 | decFloat * decFloatCanonical(decFloat *result, const decFloat *df) { |
| 1612 | return decCanonical(result, df); |
| 1613 | } // decFloatCanonical |
| 1614 | |
| 1615 | /* ------------------------------------------------------------------ */ |
| 1616 | /* decFloatClass -- return the class of a decFloat */ |
nothing calls this directly
no test coverage detected