SYNOPSIS
  string stime (void | int fmt, void | int date)

DESCRIPTION
  Convert the given or current time into a string.
    fmt  : specifies which parts appear:
             SD_WDAY  : day of the week
             SD_DATE  : the date itself
             SD_SDATE : the date itself, but w/o the century
             SD_TIME  : the time
           Default is (SD_WDAY | SD_DATE | SD_TIME) == SD_FULL
    date : The numeric time as returned by time() to convert.
           Default is time().

  Result is the time as a string in a more european manner:
    Example: 'Mon 15-Jun-1992 20:00:00'

SEE ALSO
  time(efun), ctime(efun)
