Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

lib_math.h/lib_math.c

Prototype

Code Block
languagecpp
          RAND_NBR  Math_RandSeed (RAND_NBR  seed);


Arguments

seed

Initial (or current) value to set for the pseudo-random number sequence.

...

Math_RandSeed() is re-entrant since it calculates the next random number using only local variables.

Example Usage

Code Block
languagecpp
          RAND_NBR  seed;
          RAND_NBR  rand_nbr;


          seed     = 9876;
          rand_nbr = Math_RandSeed(seed);