Index
ncurses-minesweeper
/
cde78e2
Terminal game of Minesweeper, implemented in C with ncurses.
Download
|
Refs
|
Commit Log
|
Files
|
README
|
LICENSE
Latest Commit
{#}
Time
Hash
Subject
Author
#
(+)
(-)
GPG?
35
30 Sep 2020 15:36
cde78e2
Use microsecond precision for stopwatch time
Josh Stockin
1
8
0
G
Blob @
ncurses-minesweeper
/
src
/
time.h
text/plain
84 bytes
download raw
1
#ifndef TIME_H
2
#define TIME_H
3
4
#include <stdint.h>
5
6
uint64_t
time_us
(
void
);
7
8
#endif
9