mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-05-25 22:14:37 +00:00
15 lines
262 B
C++
15 lines
262 B
C++
#ifndef __FENNIX_KERNEL_RANDOM_H__
|
|
#define __FENNIX_KERNEL_RANDOM_H__
|
|
|
|
#include <types.h>
|
|
|
|
namespace Random
|
|
{
|
|
uint16_t rand16();
|
|
uint32_t rand32();
|
|
uint64_t rand64();
|
|
void changeseed(uint64_t CustomSeed);
|
|
}
|
|
|
|
#endif // !__FENNIX_KERNEL_RANDOM_H__
|