optimize randint() function for massive performance increase

This commit is contained in:
2025-03-18 19:54:50 +02:00
parent 566dcc18bd
commit b1b2d6903f
3 changed files with 30 additions and 7 deletions

View File

@@ -1,6 +1,7 @@
#ifndef RANDOM_HEADER
#define RANDOM_HEADER
void random_init(void);
size_t randint(size_t max);
#endif