Cleanup in elf.c with .bss section clean; adm command mounts cdrom instead of floppy...
[ZeXOS.git] / apps / zde / zclock / main.c
blobb0052886ff86de2d779e30145e0d5e719f54c975
1 /*
2 * ZeX/OS
3 * Copyright (C) 2009 Tomas 'ZeXx86' Jedrzejek (zexx86@zexos.org)
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #include <appcl.h>
21 #include <stdio.h>
22 #include <time.h>
24 void ztest_draw ()
26 time_t t = time (0);
28 struct tm time;
29 localtime_r (&t, &time);
31 char str[128];
32 sprintf (str, "%d:%d:%d", time.tm_hour, time.tm_min, time.tm_sec+1);
34 zgui_puts (28, 15, "CLOCK", 0);
35 zgui_puts (20, 30, str, 0);
38 int main (int argc, char **argv)
40 int exit = 0;
42 if (zgui_init () == -1)
43 return -1;
45 zgui_resize (100, 70);
47 while (!exit) {
48 unsigned state = zgui_event ();
50 if (state & APPCL_STATE_REDRAW)
51 ztest_draw ();
53 if (state & APPCL_STATE_EXIT)
54 exit = 1;
57 return zgui_exit ();