Index

ncurses-minesweeper / 48ca66b

Terminal game of Minesweeper, implemented in C with ncurses.

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
3730 Sep 2020 15:44c48249aAdd copyright disclaimer to time.c, time.hJosh Stockin1110G

Blob @ ncurses-minesweeper / src / time.h

text/plain543 bytesdownload raw
1/* ncurses-minesweeper Copyright (c) 2020 Joshua 'joshuas3' Stockin
2 * <https://joshstock.in>
3 * <https://github.com/JoshuaS3/ncurses-minesweeper>
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 TIME_H
13#define TIME_H
14
15#include <stdint.h>
16
17uint64_t time_us(void);
18
19#endif
20