2008-01-10 14:49:12 -05:00
|
|
|
USING: alien alien.c-types arrays calendar.backend
|
|
|
|
kernel structs math unix namespaces ;
|
2007-09-20 18:09:08 -04:00
|
|
|
IN: calendar.unix
|
|
|
|
|
|
|
|
TUPLE: unix-calendar ;
|
|
|
|
|
2008-01-10 14:49:12 -05:00
|
|
|
T{ unix-calendar } calendar-backend set-global
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
: get-time
|
|
|
|
f time <uint> localtime ;
|
|
|
|
|
|
|
|
: timezone-name
|
|
|
|
get-time tm-zone ;
|
|
|
|
|
|
|
|
M: unix-calendar gmt-offset
|
|
|
|
get-time tm-gmtoff 3600 / ;
|