div function

int div (
  1. int a,
  2. int b
)

divide a and b

Implementation

int div(int a, int b) {
  return a ~/ b;
}