26 lines
666 B
C
26 lines
666 B
C
/*----------------------------------------------------------
|
|
* HTBLA-Leonding / Class: 2IHIF
|
|
* ---------------------------------------------------------
|
|
* Exercise Number: B1
|
|
* Title: Mine Sweeper User Interface Utilities
|
|
* Author: Marc Tismonar
|
|
* ----------------------------------------------------------
|
|
* Description:
|
|
* Implementation of ms_ui_utils.h.
|
|
* ----------------------------------------------------------
|
|
*/
|
|
|
|
#include <time.h>
|
|
#include <stdlib.h>
|
|
|
|
|
|
void msu_init_rand() {
|
|
srand(time(0));
|
|
}
|
|
|
|
CellIdx msu_get_random_index(Count upper_limit) {
|
|
return (upper_limit == 0 ? 0 : rand() % (upper_limit));
|
|
}
|
|
|
|
|
|
|