tmdate(1): document tz field

This commit is contained in:
Ori Bernstein 2020-09-12 17:36:14 -07:00
parent 732082c095
commit 26cf6ec073

View file

@ -11,6 +11,7 @@ tmnow, tzload, tmtime, tmparse, tmfmt, tmnorm - convert date and time
.EX
typedef struct Tm Tm;
typedef struct Tmfmt Tmfmt;
typedef struct Tzone Tzone;
struct Tm {
int nsec; /* nanoseconds (range 0..1e9) */
@ -24,6 +25,7 @@ struct Tm {
int yday; /* day of year (0..365) */
char zone[]; /* time zone name */
int tzoff; /* time zone delta from GMT, seconds */
Tzone *tz; /* the time zone (optional) */
};
Tzone *tzload(char *name);
@ -153,8 +155,6 @@ which would get normalized to February 1st.
Any characters not specified above are copied directly to output,
without modification.
.PP
If the format argument is nil, it makes an
attempt to parse common human readable date formats. These