1 2 3 4 5 6 7 8 9 10 11
#pragma once #include "config.h" // Based on mattiasgustavsson's rnd.h header void rand_seed(void); u32 rand_u32(void); int rand_range(i32 min, i32 max);