mirror of
https://github.com/preservim/tagbar.git
synced 2025-02-21 10:05:40 +08:00
12 lines
233 B
Awk
12 lines
233 B
Awk
# 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)
|
|
}
|