home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / ctime.awk < prev    next >
Text File  |  2003-10-29  |  233b  |  12 lines

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