16 lines
243 B
C
16 lines
243 B
C
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);
|