diff options
author | Marvin Borner | 2020-08-22 17:38:40 +0200 |
---|---|---|
committer | Marvin Borner | 2020-08-22 17:38:40 +0200 |
commit | 424dc57424ee17de77d689443f95d2e1bed72f4a (patch) | |
tree | 1ae2f071ee2de984a2f112de0e69208e593ddc51 /libc/inc/random.h | |
parent | d748a6f54ce7af45afde487936d5a02cb2a91b05 (diff) |
Added random number generator
Diffstat (limited to 'libc/inc/random.h')
-rw-r--r-- | libc/inc/random.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libc/inc/random.h b/libc/inc/random.h new file mode 100644 index 0000000..50c849b --- /dev/null +++ b/libc/inc/random.h @@ -0,0 +1,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 |