Index

ncurses-minesweeper / 9c8d69c

Terminal game of Minesweeper, implemented in C with ncurses.

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
2117 Sep 2020 21:34d83acc5Rewrite and finish game and renderer codeJosh Stockin1110G

Blob @ ncurses-minesweeper / src / game / nearest_cells.h

text/plain696 bytesdownload raw
1/* ncurses-minesweeper Copyright (c) 2020 Joshua 'joshuas3' Stockin
2 * <https://joshstock.in>
3 * <https://github.com/JoshuaS3/lognestmonster>
4 *
5 * This software is licensed and distributed under the terms of the MIT License.
6 * See the MIT License in the LICENSE file of this project's root folder.
7 *
8 * This comment block and its contents, including this disclaimer, MUST be
9 * preserved in all copies or distributions of this software's source.
10 */
11
12#ifndef GAME_NEAREST_CELLS_H
13#define GAME_NEAREST_CELLS_H
14
15#include <stdint.h>
16#include "../state.h"
17
18int16_t *list_nearby_cells(game_board *board, uint16_t cell);
19void recursively_open_nearby_cells(game_board *board, uint16_t cell);
20
21#endif
22