------------------------------------------------------------------ */ decFloatToIntegral -- round to integral value (two flavours) */ / result gets the result */ df is the decFloat to round */ set is the context */ round is the rounding mode to use
| 3506 | /* if 'Exact' appears in the name. */ |
| 3507 | /* ------------------------------------------------------------------ */ |
| 3508 | decFloat * decFloatToIntegralValue(decFloat *result, const decFloat *df, |
| 3509 | decContext *set, enum rounding round) { |
| 3510 | return decToIntegral(result, df, set, round, 0);} |
| 3511 | |
| 3512 | decFloat * decFloatToIntegralExact(decFloat *result, const decFloat *df, |
| 3513 | decContext *set) { |
nothing calls this directly
no test coverage detected