You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mylibc/my_ultimate_div_mod.c

11 lines
135 B

void ultimate_div_mod(int *a, int *b)
{
int buf_a;
int buf_b;
buf_a = *a;
buf_b = *b;
*a = buf_a / buf_b;
*b = buf_a % buf_b;
}