home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / ansi / time / time.txh < prev   
Encoding:
Text File  |  1995-07-10  |  359 b   |  24 lines

  1. @node time, time
  2. @subheading Syntax
  3.  
  4. @example
  5. #include <time.h>
  6.  
  7. time_t time(time_t *t);
  8. @end example
  9.  
  10. @subheading Description
  11.  
  12. If @var{t} is not @code{NULL}, the current time is stored in @code{*t}. 
  13.  
  14. @subheading Return Value
  15.  
  16. The current time is returned.
  17.  
  18. @subheading Example
  19.  
  20. @example
  21. printf("Time is %d\n", time(0));
  22. @end example
  23.  
  24.