Index
ncurses-minesweeper
/
71d76ab
Terminal game of Minesweeper, implemented in C with ncurses.
Download
|
Refs
|
Commit Log
|
Files
|
README
|
LICENSE
Latest Commit
{#}
Time
Hash
Subject
Author
#
(+)
(-)
GPG?
12
12 Sep 2020 16:19
9e98a79
Create game loop and page structure
Josh Stockin
1
8
0
G
Blob @
ncurses-minesweeper
/
src
/
draw
/
text.h
text/plain
128 bytes
download raw
1
#ifndef TEXT_H
2
#define TEXT_H
3
4
int
centerx
(
const char
*
txt
);
5
int
centery
();
6
void
flushright
(
int
line
,
const char
*
txt
);
7
8
#endif
9