:: limine / common / lib / rand.h 145 B raw

1
#ifndef LIB__RAND_H__
2
#define LIB__RAND_H__
3
4
#include <stdint.h>
5
6
void srand(uint32_t s);
7
8
uint32_t rand32(void);
9
uint64_t rand64(void);
10
11
#endif
tab: 248 wrap: offon