Sign in
gfiber
/
toolchains
/
mindspeed
/
3836abf28a546a4a9a1b739cff0d1cb8ee89ee8a
/
.
/
share
/
awk
/
ctime.awk
blob: f37856c686b2849e2f39dad6e4fca3de80c5a32f [
file
] [
log
] [
blame
]
# ctime.awk
#
# awk version of C ctime(3) function
function
ctime
(
ts
,
format
)
{
format
=
"%a %b %e %H:%M:%S %Z %Y"
if
(
ts
==
0
)
ts
=
systime
()
# use current time as default
return
strftime
(
format
,
ts
)
}