aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2013-12-30 19:43:40 +1300
committerMichael Kerrisk <mtk.manpages@gmail.com>2014-01-02 11:49:15 +1300
commit213d25801a3fd7bec7cc5d6ec9e5614dc9fc8c92 (patch)
treedf523b18f1e3f80b8d342901e327b81c81adaac5
parent3dd08d1d7213ad7e281b3b6ad2eec81ff15ed01d (diff)
downloadman-pages-213d25801a3fd7bec7cc5d6ec9e5614dc9fc8c92.tar.gz
ctime.3: grfix: add some commas
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
-rw-r--r--man3/ctime.326
1 files changed, 13 insertions, 13 deletions
diff --git a/man3/ctime.3 b/man3/ctime.3
index d97ed47fb7..89b2fd2a99 100644
--- a/man3/ctime.3
+++ b/man3/ctime.3
@@ -32,7 +32,7 @@
.\" Modified 2001-12-13, joey, aeb
.\" Modified 2004-11-16, mtk
.\"
-.TH CTIME 3 2010-02-25 "" "Linux Programmer's Manual"
+.TH CTIME 3 2013-12-30 "" "Linux Programmer's Manual"
.SH NAME
asctime, ctime, gmtime, localtime, mktime, asctime_r, ctime_r, gmtime_r,
localtime_r \- transform date and time to broken-down time or ASCII
@@ -81,7 +81,7 @@ The
and
.BR localtime ()
functions all take
-an argument of data type \fItime_t\fP which represents calendar time.
+an argument of data type \fItime_t\fP, which represents calendar time.
When interpreted as an absolute time value, it represents the number of
seconds elapsed since the Epoch, 1970-01-01 00:00:00 +0000 (UTC).
.PP
@@ -90,24 +90,24 @@ The
and
.BR mktime ()
functions both take an argument
-representing broken-down time which is a representation
+representing broken-down time, which is a representation
separated into year, month, day, and so on.
.PP
Broken-down time is stored
-in the structure \fItm\fP which is defined in \fI<time.h>\fP as follows:
+in the structure \fItm\fP, which is defined in \fI<time.h>\fP as follows:
.sp
.in +4n
.nf
struct tm {
- int tm_sec; /* seconds */
- int tm_min; /* minutes */
- int tm_hour; /* hours */
- int tm_mday; /* day of the month */
- int tm_mon; /* month */
- int tm_year; /* year */
- int tm_wday; /* day of the week */
- int tm_yday; /* day in the year */
- int tm_isdst; /* daylight saving time */
+ int tm_sec; /* Seconds (0-60) */
+ int tm_min; /* Minutes (0-59) */
+ int tm_hour; /* Hours (0-23) */
+ int tm_mday; /* Day of the month (1-31) */
+ int tm_mon; /* Month (0-11) */
+ int tm_year; /* Year - 1900 */
+ int tm_wday; /* Day of the week (0-6, Sunday = 0) */
+ int tm_yday; /* Day in the year (0-365, 1 Jan = 0) */
+ int tm_isdst; /* Daylight saving time */
};
.fi
.in