blob: 50c849be647c439c0d26b7bd71320a397b1cea06 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
// MIT License, Copyright (c) 2020 Marvin Borner
#ifndef RANDOM_H
#define RANDOM_H
#include <def.h>
void srand(u32 seed);
u32 rand();
char *randstr(u32 size);
#endif
|