time->string[procedure] time->string time
Chicken: convers a vector time, which is returned by
seconds->local-time or seconds->utc-time, to a string.
POSIX asctime.
Other implementations call this posix-asctime?, sys-asctime?.
[procedure] time->string time
Scheme48: takes a time record and resturs the string representation.
Time record in Scheme48 contains # of seconds from the Unix Epoch,
so this is like POSIX ctime.
See also make-time, current-time, time-seconds.
Other implementations have posix-ctime?, sys-ctime?.
|