|
eolib 0.5.0
A core C library for writing applications related to Endless Online
|
#include <stdint.h>Go to the source code of this file.
Functions | |
| void | eo_srand (uint32_t seed) |
| uint32_t | eo_rand () |
| uint32_t | eo_rand_range (uint32_t min, uint32_t max) |
| uint32_t eo_rand | ( | ) |
Generate a pseudo-random 32-bit unsigned integer. The sequence of numbers generated depends on the seed set by eo_srand().
| uint32_t eo_rand_range | ( | uint32_t | min, |
| uint32_t | max ) |
Generate a pseudo-random 32-bit unsigned integer within a specified range [min, max]. The sequence of numbers generated depends on the seed set by eo_srand().