home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / MorphOS / Epic4_mos / share / epic / help / 6_functions / info < prev    next >
Encoding:
Text File  |  2002-10-28  |  775 b   |  30 lines

  1. Synopsis:
  2.    $info(C|O|S)
  3.  
  4. Technical:
  5.    This function returns information about how the client was compiled.
  6.  
  7. Practical:
  8.    This function is used to fetch information stored in the client at
  9.    compile time.  It can be used to find out who compiled it, and when;
  10.    what #define options were enabled; and to get the checksums of the
  11.    binary.
  12.  
  13. Returns:
  14.    requested information
  15.  
  16. Options:
  17.    c   user@machine that compiled client, and time of compilation
  18.    o   compile-time options used
  19.    s   binary checksums
  20.  
  21. Examples:
  22.    $info(c)   might return
  23.                 "Compiled by root@foobar on Fri Jan 3 1997 at 01:56:24 CST"
  24.    $info(o)   might return "2aefgknvzc"
  25.    $info(s)   might return "1138232081      989 info.c.sh"
  26.  
  27. See Also:
  28.    Compile_Opts(7)
  29.  
  30.