1FDATE(3F) FDATE(3F)
2
3
4
6 fdate - return date and time in an ASCII string
7
9 subroutine fdate (string)
10 character*(*) string
11
12 character*(*) function fdate()
13
15 Fdate returns the current date and time as a 24 character string in the
16 format described under ctime(3). Neither `newline' nor NULL will be
17 included.
18
19 Fdate can be called either as a function or as a subroutine. If called
20 as a function, the calling routine must define its type and length. For
21 example:
22
23 character*24 fdate
24 external fdate
25
26 write(*,*) fdate()
27
28
30 /usr/lib/libU77.a
31
33 ctime(3), time(3F), itime(3F), idate(3F), ltime(3F)
34
35
36
374.2 Berkeley Distribution May 27, 1986 FDATE(3F)