dd_math.c 93 B

1234567
  1. #include "dd_math.h"
  2. #include <stdlib.h>
  3. int dd_math_rand(int max) {
  4. return rand() %max;
  5. }