diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-09-01 20:06:34 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-09-01 20:06:34 -0700 |
commit | 1d20add423fa458e37f4e1ca2ff66957bc9a64ac (patch) | |
tree | 52174e6fb0eab225c73f80096d08b9cea06527b6 /txr.1 | |
parent | e45879190339521abda2b5f8eb125cd78d08b876 (diff) | |
download | txr-1d20add423fa458e37f4e1ca2ff66957bc9a64ac.tar.gz txr-1d20add423fa458e37f4e1ca2ff66957bc9a64ac.tar.bz2 txr-1d20add423fa458e37f4e1ca2ff66957bc9a64ac.zip |
Document new time structure and functions.
* txr.1: Document time struct, time-struct-local
and time-struct-utc.
Diffstat (limited to 'txr.1')
-rw-r--r-- | txr.1 | 65 |
1 files changed, 65 insertions, 0 deletions
@@ -30056,6 +30056,71 @@ function or from the .code time-usec function. +.coNP Structure @ time +.synb + (defstruct time nil + year month day hour min sec dst) +.syne +.desc +The +.code time +structure represents a time broken down into individual fields. +The structure almost directly corresponds to the +.code struct tm +type in the ISO C language. There are differences. +Whereas the +.code struct tm +member +.code tm_year +represents a year since 1900, the +.code year +slot of the +.code time +structure represents the absolute year, not relative to 1900. +Furthermore, the +.code month +slot represents a one-based numeric month, such that 1 represents +January, whereas the C member +.code tm_mon +uses a zero-based month. The +.code dst +slot is a \*(TL boolean value. The remaining slots +.codn hour , +.codn min , +and +.code sec +correspond directly to +.codn tm_hour , +.codn tm_min , +and +.codn tm_sec . + +.coNP Functions @ time-struct-local and @ time-struct-utc +.synb +.mets (time-struct-local << time ) +.mets (time-struct-utc << time ) +.syne +.desc +These functions take the numeric time returned by the time function, +and convert it to an instance of the +.code time +structure. + +The +.code time-string-local +function converts the time to the local timezone of +the host system. The +.code time-string-utc +function produces time in UTC. + +The +.meta time +argument is an integer representing seconds obtained from the +.code time +function or from the +.code time-usec +function. + .coNP Functions @ make-time and @ make-time-utc .synb .mets (make-time < year < month < day < hour < minute < second << dst-advice ) |