aboutsummaryrefslogtreecommitdiff
path: root/libc/inc/random.h
diff options
context:
space:
mode:
authorMarvin Borner2020-08-22 17:38:40 +0200
committerMarvin Borner2020-08-22 17:38:40 +0200
commit424dc57424ee17de77d689443f95d2e1bed72f4a (patch)
tree1ae2f071ee2de984a2f112de0e69208e593ddc51 /libc/inc/random.h
parentd748a6f54ce7af45afde487936d5a02cb2a91b05 (diff)
Added random number generator
Diffstat (limited to 'libc/inc/random.h')
-rw-r--r--libc/inc/random.h12
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