| 78 | } |
| 79 | |
| 80 | long RandomLong (long from, long to) |
| 81 | { |
| 82 | // this function returns a random integer number between (and including) |
| 83 | // the starting and ending values passed by parameters from and to. |
| 84 | if (to <= from) |
| 85 | return (from); |
| 86 | |
| 87 | return (from + lrand () / (LRAND_MAX / (to - from + 1))); |
| 88 | } |
| 89 | |
| 90 | float RandomFloat (float from, float to) |
| 91 | { |
no test coverage detected