time - get time
#include <time.h> time_t time(time_t *tloc);
The time() function returns the value of time in seconds since the Epoch.The tloc argument points to an area where the return value is also stored. If tloc is a null pointer, no value is stored.
Upon successful completion, time() returns the value of time. Otherwise, (time_t)-1 is returned.
No errors are defined.
None.
None.
None.
asctime(), clock(), ctime(), difftime(), gmtime(), localtime(), mktime(), strftime(), strptime(), utime(), <time.h>.
Derived from Issue 1 of the SVID.