Index

ncurses-minesweeper / f003c49

Terminal game of Minesweeper, implemented in C with ncurses.

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
1212 Sep 2020 16:199e98a79Create game loop and page structureJosh Stockin180G

Blob @ ncurses-minesweeper / src / draw / text.h

text/plain128 bytesdownload raw
1#ifndef TEXT_H
2#define TEXT_H
3
4int centerx(const char* txt);
5int centery();
6void flushright(int line, const char* txt);
7
8#endif
9