mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-20 22:29:16 +02:00
12 lines
449 B
Text
12 lines
449 B
Text
|
|
(module (chibi time)
|
|
(export current-seconds get-time-of-day set-time-of-day!
|
|
seconds->time seconds->string time->seconds time->string
|
|
timeval-seconds timeval-microseconds
|
|
timezone-offset timezone-dst-time
|
|
time-second time-minute time-hour time-day time-month time-year
|
|
time-day-of-week time-day-of-year time-dst?
|
|
tm? timeval? timezone?)
|
|
(import (scheme))
|
|
(include-shared "time"))
|
|
|