Index

ncurses-minesweeper / 64ad4d8

Terminal game of Minesweeper, implemented in C with ncurses.

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
3530 Sep 2020 15:36cde78e2Use microsecond precision for stopwatch timeJosh Stockin180G

Blob @ ncurses-minesweeper / src / time.h

text/plain84 bytesdownload raw
1#ifndef TIME_H
2#define TIME_H
3
4#include <stdint.h>
5
6uint64_t time_us(void);
7
8#endif
9