.TH TIME 3F .UC .SH NAME time, ctime, ltime, gmtime \- return system time .SH SYNOPSIS .B integer*4 function time() .sp 1 .B character*(*) function ctime (stime) .br .B integer*4 stime .sp 1 .B subroutine ltime (stime, tarray) .br .B integer*4 stime .br .B integer*2 tarray(9) .sp 1 .B subroutine gmtime (stime, tarray) .br .B integer*4 stime .br .B integer*2 tarray(9) .SH DESCRIPTION .I Time returns the time since 00:00:00 GMT, Jan. 1, 1970, measured in seconds. This is the value of the UNIX system clock. .PP .I Ctime converts a system time to a 24 character ASCII string. The format is described under .IR ctime (3). No 'newline' or NULL will be included. .PP .I Ltime and .I gmtime disect a UNIX time into month, day, etc., either for the local time zone or as GMT. The order and meaning of each element returned in .I tarray is described under .IR ctime (3). .SH FILES .ie \nM /usr/ucb/lib/libU77.a .el /usr/lib/libU77.a .SH "SEE ALSO" ctime(3), itime(3F), idate(3F), fdate(3F)