| 2025 | } |
| 2026 | |
| 2027 | int decimal_intg(const decimal_t *from) |
| 2028 | { |
| 2029 | int res; |
| 2030 | remove_leading_zeroes(from, &res); |
| 2031 | return res; |
| 2032 | } |
| 2033 | |
| 2034 | int decimal_add(const decimal_t *from1, const decimal_t *from2, decimal_t *to) |
| 2035 | { |
no test coverage detected