Lephisto/src/rng.h

8 lines
98 B
C

#pragma once
#include <stdlib.h>
#define RNG(L,H) (rand()%(int)(H-L+1)+L)
void rng_init(void);