div100()
Fast divisions by 10, 100 or 1000.
struct div_result_i32 {
int32_t quo; // quotient
int16_t rem; // remainder
uint8_t b_neg; // true if negative
uint8_t digits_rem; // digits of remainder
};
div_result_i32 div10(int32_t val);
div_result_i32 div100(int32_t val);
div_result_i32 div1000(int32_t val);Usage examples
Calculation speed
Output results
opt parameter
content
Example
Background
最終更新