eolib 0.5.0
A core C library for writing applications related to Endless Online
Loading...
Searching...
No Matches
rng.h
Go to the documentation of this file.
1#ifndef EOLIB_RNG_H
2#define EOLIB_RNG_H
3
4#include <stdint.h>
5
11void eo_srand(uint32_t seed);
12
18uint32_t eo_rand();
19
24uint32_t eo_rand_range(uint32_t min, uint32_t max);
25
26#endif
uint32_t eo_rand()
Definition rng.c:12
void eo_srand(uint32_t seed)
Definition rng.c:6
uint32_t eo_rand_range(uint32_t min, uint32_t max)
Definition rng.c:38