#include #include #include unsigned int get_random(unsigned int max) { srand(time(NULL)); return rand() % (max + 1); }