TODO these four operations should use banker's rounding, but roundeven is C23 so it's unavailable here.
| 829 | |
| 830 | // TODO these four operations should use banker's rounding, but roundeven is C23 so it's unavailable here. |
| 831 | int32_t do_round_w_s(float num) { |
| 832 | return lroundf(num); |
| 833 | } |
| 834 | |
| 835 | int32_t do_round_w_d(double num) { |
| 836 | return lround(num); |
nothing calls this directly
no outgoing calls
no test coverage detected