mirror of
https://github.com/travisgoodspeed/goodwatch
synced 2024-11-22 08:09:13 +00:00
18 lines
296 B
C
18 lines
296 B
C
/*! \file shabbat.h
|
|
\brief Shabbat Application
|
|
|
|
*/
|
|
|
|
//! Enter the Shabbat application.
|
|
void shabbat_init();
|
|
|
|
//! Exit the Shabbat application.
|
|
int shabbat_exit();
|
|
|
|
//! Draw the Shabbat screen.
|
|
void shabbat_draw();
|
|
|
|
//! Keypress handler for the shabbat applet.
|
|
int shabbat_keypress(char ch);
|
|
|