mirror of
https://github.com/travisgoodspeed/goodwatch
synced 2024-11-23 01:08:35 +00:00
17 lines
276 B
C
17 lines
276 B
C
/*! \file clock.h
|
|
\brief Clock application, the main one.
|
|
*/
|
|
|
|
//! Initialize the clock.
|
|
void clock_init();
|
|
//! Exit to the next application.
|
|
int clock_exit();
|
|
//! Draw the clock.
|
|
void clock_draw();
|
|
|
|
|
|
//! Draw the time.
|
|
void draw_time();
|
|
//! Draw the date.
|
|
void draw_date();
|