summaryrefslogtreecommitdiff
path: root/apps/plugins/lua/gmtime.c
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2010-05-06 21:04:40 +0000
committerThomas Martitz <kugel@rockbox.org>2010-05-06 21:04:40 +0000
commit50a6ca39ad4ed01922aa4f755f0ca579788226cf (patch)
treec7881b015b220558167310345b162324c96be15a /apps/plugins/lua/gmtime.c
parentadb506df14aded06ed6e9ebf8540e6fd383ffd6a (diff)
downloadrockbox-50a6ca39ad4ed01922aa4f755f0ca579788226cf.tar.gz
rockbox-50a6ca39ad4ed01922aa4f755f0ca579788226cf.zip
Move c/h files implementing/defining standard library stuff into a new libc directory, also standard'ify some parts of the code base (almost entirely #include fixes).
This is to a) to cleanup firmware/common and firmware/include a bit, but also b) for Rockbox as an application which should use the host system's c library and headers, separating makes it easy to exclude our files from the build. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25850 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/lua/gmtime.c')
-rw-r--r--apps/plugins/lua/gmtime.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/lua/gmtime.c b/apps/plugins/lua/gmtime.c
index f13c855de8..deb24e08c9 100644
--- a/apps/plugins/lua/gmtime.c
+++ b/apps/plugins/lua/gmtime.c
@@ -20,7 +20,7 @@ const short __spm[13] =
20 (31+28+31+30+31+30+31+31+30+31+30+31), 20 (31+28+31+30+31+30+31+31+30+31+30+31),
21 }; 21 };
22 22
23int __isleap(int year) { 23static inline int isleap(int year) {
24 /* every fourth year is a leap year except for century years that are 24 /* every fourth year is a leap year except for century years that are
25 * not divisible by 400. */ 25 * not divisible by 400. */
26/* return (year % 4 == 0 && (year % 100 != 0 || year % 400 == 0)); */ 26/* return (year % 4 == 0 && (year % 100 != 0 || year % 400 == 0)); */
@@ -36,7 +36,7 @@ struct tm *gmtime(const time_t *timep) {
36 work=*timep/(SPD); 36 work=*timep/(SPD);
37 r.tm_wday=(4+work)%7; 37 r.tm_wday=(4+work)%7;
38 for (i=1970; ; ++i) { 38 for (i=1970; ; ++i) {
39 register time_t k=__isleap(i)?366:365; 39 register time_t k=isleap(i)?366:365;
40 if (work>=k) 40 if (work>=k)
41 work-=k; 41 work-=k;
42 else 42 else
@@ -46,7 +46,7 @@ struct tm *gmtime(const time_t *timep) {
46 r.tm_yday=work; 46 r.tm_yday=work;
47 47
48 r.tm_mday=1; 48 r.tm_mday=1;
49 if (__isleap(i) && (work>58)) { 49 if (isleap(i) && (work>58)) {
50 if (work==59) r.tm_mday=2; /* 29.2. */ 50 if (work==59) r.tm_mday=2; /* 29.2. */
51 work-=1; 51 work-=1;
52 } 52 }