aboutsummaryrefslogtreecommitdiff
path: root/libc/inc/random.h
blob: 59add9bb6dca49f5e0b2a6e79cca22423337c0bc (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(void);
char *randstr(u32 size);

#endif