JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
version bump to 0.5.5
[vor.git] / mt.h
1 #ifndef VOR_MT_H
2 #define VOR_MT_H
3
4 #include <inttypes.h>
5
6 void init_mt(uint32_t s);
7 uint32_t urnd(void); // [0, 0xfffffff]
8 float frnd(void);  // [0, 1)
9 float crnd(void);  // [-0.5, 0.5)
10
11 #endif // VOR_MT_H