mirror of https://github.com/dirtbags/moth.git
12 lines
183 B
C
12 lines
183 B
C
|
#ifndef __RAND_H__
|
||
|
#define __RAND_H__
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include <stddef.h>
|
||
|
|
||
|
void urandom(void *buf, size_t buflen);
|
||
|
int32_t rand32();
|
||
|
uint32_t randu32();
|
||
|
|
||
|
#endif /* __RAND_H__ */
|