summaryrefslogtreecommitdiff
path: root/random.h
diff options
context:
space:
mode:
authorcitrons <citrons@mondecitronne.com>2023-10-11 23:58:12 -0500
committercitrons <citrons@mondecitronne.com>2023-10-11 23:58:12 -0500
commitab32d51871248e0fbf6758a425eda2256712d519 (patch)
treeba48813a3a75f79eea5c867496d77fdb8a3251db /random.h
initial commit
Diffstat (limited to 'random.h')
-rw-r--r--random.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/random.h b/random.h
new file mode 100644
index 0000000..18a032b
--- /dev/null
+++ b/random.h
@@ -0,0 +1,9 @@
+#ifndef RANDOM_H
+#define RANDOM_H
+
+void seed_rand(Uint64 seed);
+Uint64 get_rand(void);
+int rand_int(void);
+double rand_float(void);
+
+#endif