blob: 0a50d262428d6d69705dbcd4dec215c7c9f642ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# ctime.awk
#
# awk version of C ctime(3) function
function ctime(ts, format)
{
format = "%a %b %d %H:%M:%S %Z %Y"
if (ts == 0)
ts = systime() # use current time as default
return strftime(format, ts)
}
|