btmux-0.6-rc4/doc/
btmux-0.6-rc4/event/
btmux-0.6-rc4/game/
btmux-0.6-rc4/game/maps/
btmux-0.6-rc4/game/mechs/
btmux-0.6-rc4/game/text/help/
btmux-0.6-rc4/game/text/help/cat_faction/
btmux-0.6-rc4/game/text/help/cat_inform/
btmux-0.6-rc4/game/text/help/cat_misc/
btmux-0.6-rc4/game/text/help/cat_mux/
btmux-0.6-rc4/game/text/help/cat_mux/cat_commands/
btmux-0.6-rc4/game/text/help/cat_mux/cat_functions/
btmux-0.6-rc4/game/text/help/cat_templates/
btmux-0.6-rc4/game/text/wizhelp/
btmux-0.6-rc4/include/
btmux-0.6-rc4/misc/
btmux-0.6-rc4/python/
btmux-0.6-rc4/src/hcode/btech/
btmux-0.6-rc4/tree/
& convtime()
 
  Syntax: convtime(<time string>)
 
  This functions converts a time string to the number of seconds since 
  Jan 1, 1970. A time string is formatted: Ddd MMM DD HH:MM:SS YYYY 
  where 
 
  Ddd is the day of the week, 
  MMM is the month, DD is the day of the month, 
  HH is the hour in 24-hour time, 
  MM is the minutes, SS is the seconds, and 
  YYYY is the year. 
  
  If you supply an incorrectly formatted string, it will return -1.
 
  Note: This function may also be called as time2secs().
 
  Example:
 
  > say time()
  You say "Wed Jun 24 10:22:54 1992"
  > say convtime(Wed Jun 24 10:22:54 1992)
  You say "709395774"
 
  See Also: convsecs(), secs(), time(), starttime().