aboutsummaryrefslogtreecommitdiffhomepage
path: root/fuzz/Fuzz.h
diff options
context:
space:
mode:
Diffstat (limited to 'fuzz/Fuzz.h')
-rw-r--r--fuzz/Fuzz.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/fuzz/Fuzz.h b/fuzz/Fuzz.h
index 26a8d429b3..07c2c8456e 100644
--- a/fuzz/Fuzz.h
+++ b/fuzz/Fuzz.h
@@ -21,6 +21,8 @@ public:
uint32_t nextU();
// This can be nan, +- infinity, 0, anything.
float nextF();
+ // Returns a float between [0..1) as a IEEE float
+ float nextF1();
// Return the next fuzzed value [min, max) as an unsigned 32bit integer.
uint32_t nextRangeU(uint32_t min, uint32_t max);