Initial commit

This commit is contained in:
2017-11-27 09:54:08 +00:00
commit e0aed95b7b
6 changed files with 164 additions and 0 deletions

15
nclock.h Normal file
View File

@@ -0,0 +1,15 @@
typedef struct {
int centerx;
int centery;
int maxy;
int maxx;
} state;
/* Function prototypes */
void quitProgram(void);
void initState(state *s);
void drawNumber(int starty, int startx, int num);
void drawTime(state *s);