aboutsummaryrefslogtreecommitdiff
path: root/libs/libc/inc/random.h
blob: a82524c7fc89a7857fc4a6ed546229a11defce96 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// MIT License, Copyright (c) 2020 Marvin Borner

#ifndef RANDOM_H
#define RANDOM_H

#include <def.h>

void srand(u32 seed);
u32 rdrand(void);
u32 rdseed(void);
u32 rand(void);
char *randstr(u32 size);

#endif