Index

ncurses-minesweeper / 57786ab

Terminal game of Minesweeper, implemented in C with ncurses.

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
509 Sep 2020 21:112a7d780Update Makefile; begin program logicJosh Stockin180G

Blob @ ncurses-minesweeper / src / text.h

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