utils.h 395 B

12345678910111213141516
  1. #ifndef UTILS_H_
  2. #define UTILS_H_
  3. #include <time.h>
  4. #include "../board/board.h"
  5. extern boardInfo brdInfo;
  6. int randomInt(const int start, const int end, const unsigned int seed);
  7. int randomX(const clock_t initClock);
  8. int randomY(const clock_t initClock);
  9. void sleep_ms(const int ms);
  10. void mallocError(const char* varName, const char* fileName, const char* functionName);
  11. #endif // UTILS_H_