13-minesweeper/ms_ui_utils.c
github-classroom[bot] 8c7ea4970a
Initial commit
2025-01-28 00:13:55 +00:00

26 lines
649 B
C

/*----------------------------------------------------------
* HTBLA-Leonding / Class: <your class>
* ---------------------------------------------------------
* Exercise Number: B1
* Title: Mine Sweeper User Interface Utilities
* Author: */<your name>/*
* ----------------------------------------------------------
* 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));
}