factor/basis/calendar/unix/unix.factor

13 lines
312 B
Factor
Raw Normal View History

2008-09-01 12:48:22 -04:00
USING: alien alien.c-types arrays calendar kernel structs
math unix.time namespaces system ;
2007-09-20 18:09:08 -04:00
IN: calendar.unix
: get-time ( -- alien )
2007-09-20 18:09:08 -04:00
f time <uint> localtime ;
: timezone-name ( -- string )
2007-09-20 18:09:08 -04:00
get-time tm-zone ;
2008-04-02 19:28:55 -04:00
M: unix gmt-offset ( -- hours minutes seconds )
get-time tm-gmtoff 3600 /mod 60 /mod ;