The miscellaneous library module has the file name misc.c. This module contains miscellaneous functions that do not belong in any other Future Lab module.
Here is a list of functions in the miscellaneous library module:
The following modules are required along with this module:
This module requires the header files:
Prototype : int rnd(int lowr, int highr) Parameters : Name : lowr Description: low range Name : highr Description: high range Returns : random number upon success, -1 otherwise
This function will generate a random number between the low range and the high range inclusive.